python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Non thread/cpu dependent workers? - Python
I'm looking to run a pseudo "multithreading" process which is independent of core/thread count. Is there a similar process to this where it's not cpu/thread based?
with Pool(int(Multithread_...

James_Mann1
Votes: 0
Answers: 0
Azure DevOps pipelines: REST API call to update scaling parameters of an agent pool
How could I use a REST API call to update parameters, like:
Maximum number of virtual machines in the scale set
Number of agents to keep on standby
Delay in minutes before deleting excess idle agents...
user2770141
Votes: 0
Answers: 1
How to properly implement python multiprocessing for expensive image/video tasks?
I'm running on a pretty basic quad-core machine where multiprocessing.cpu_count() = 8 with something like:
from itertools import repeat
from multiprocessing import Pool
def expensive_function(list_o...
user1087973
Votes: 0
Answers: 2
How to launch 100 workers in multiprocessing?
I am trying to use python to call my function, my_function() 100 times. Since my_function takes a while to run, I want to parallelize this process.
I tried reading the docs for https://docs.python.org...
Galen BlueTalon
Votes: 0
Answers: 1