#executors — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #executors, aggregated by home.social.
-
via @dotnet : Durable Workflows in the Microsoft Agent Framework
https://ift.tt/DEaChkm
#MicrosoftAgentFramework #MAF # DurableWorkflows #AIWorkflow #WorkflowProgrammingModel #Executors #WorkflowBuilder #InProcessExecution #DurableTask #AzureFunctions #OpenAI #A… -
via @dotnet : Durable Workflows in the Microsoft Agent Framework
https://ift.tt/DEaChkm
#MicrosoftAgentFramework #MAF # DurableWorkflows #AIWorkflow #WorkflowProgrammingModel #Executors #WorkflowBuilder #InProcessExecution #DurableTask #AzureFunctions #OpenAI #A… -
Встреча ISO C++ в Софии: С++26 и рефлексия
Привет! На связи Антон Полухин из техплатформы городских сервисов Яндекса, и сейчас я расскажу о софийской встрече Международного комитета по стандартизации языка программирования C++, в которой принимал активное участие. Это была последняя встреча, на которой новые фичи языка, с предодобренным на прошлых встречах дизайном, ещё могли попасть в C++26. И результат превзошёл все ожидания: compile-time-рефлексия рефлексия параметров функций аннотации std::optional<T&> параллельные алгоритмы Об этих и других новинках расскажу в посте
https://habr.com/ru/companies/yandex/articles/920470/
#c++29 #с++29 #c++26 #с++26 #с++ #c++ #reflection #constexpr #exception #simd #safety #security #undefined_behavior #annotations #parallel_programming #executor #executors #ranges #coroutines
-
std::execution принят в C++26 — пора знакомиться
Единый фреймворк асинхронности и параллелизма, возможность делить вычислительные ресурсы разными кодовыми базами без сложной интеграции, простота использования и гибкость - все это то, чего в C++ никогда не было. В конце июня стандартный комитет одобрил включение std::execution ( P2300 ) в C++26 . Это пропозал, который призван решить вышеуказанные проблемы. Давайте разбираться!
https://habr.com/ru/articles/842316/
#c++ #c++26 #executors #wg21 #эволюция_языка #программирование
-
The Challenges and Pitfalls of Using #Executors in #Java
https://dzone.com/articles/the-challenges-and-pitfalls-of-using-executors-in
-
The Challenges and Pitfalls of Using #Executors in #Java
https://dzone.com/articles/the-challenges-and-pitfalls-of-using-executors-in
-
I’ve been needing something akin to, what I now know to be Java’s
ExecutorService, but in my language of choice - D! So I decided to go about it and implement it.I’ve written it in such a manner such that is is extendable and new providers (job runners, think “pooled threads”, “serial runners” and so on) can be plugged in easily. For the initial proof of concept I created a
SequentialProviderwhich just consumes tasks and executes them on a single thread in serial, next up is the thread pool version which I will get around to soon enough.It’s really been fun to actually play with meta-programming more in D - I had to this time as I had to be able to make using this library as pleasant as possible as I require it for a project of mine - and I don’t want any hassles.
So there ya go!