Searched refs:ProcessPoolExecutor (Results 1 – 25 of 34) sorted by relevance
12
41 global ProcessPoolExecutor, ThreadPoolExecutor44 from .process import ProcessPoolExecutor as pe45 ProcessPoolExecutor = pe
580 class ProcessPoolExecutor(_base.Executor): class
19 :class:`ProcessPoolExecutor`. Both implement the same interface, which is59 When using :class:`ProcessPoolExecutor`, this method chops *iterables*164 for :class:`ProcessPoolExecutor`.218 ProcessPoolExecutor chapter221 The :class:`ProcessPoolExecutor` class is an :class:`Executor` subclass that223 :class:`ProcessPoolExecutor` uses the :mod:`multiprocessing` module, which229 that :class:`ProcessPoolExecutor` will not work in the interactive interpreter.232 to a :class:`ProcessPoolExecutor` will result in deadlock.234 .. class:: ProcessPoolExecutor(max_workers=None, mp_context=None, initializer=None, initargs=())270 ProcessPoolExecutor Example[all …]
118 with a :class:`concurrent.futures.ProcessPoolExecutor` to execute
76 ProcessPoolExecutor = None94 from concurrent.futures import ProcessPoolExecutor99 if workers != 1 and ProcessPoolExecutor is not None:102 with ProcessPoolExecutor(max_workers=workers) as executor:
158 executor_type = futures.ProcessPoolExecutor172 executor_type = futures.ProcessPoolExecutor184 executor_type = futures.ProcessPoolExecutor389 if self.executor_type == futures.ProcessPoolExecutor:524 with futures.ProcessPoolExecutor(max_workers=5) as e:533 executor = futures.ProcessPoolExecutor(max_workers=5)556 executor = futures.ProcessPoolExecutor(max_workers=5)933 with futures.ProcessPoolExecutor(1, mp_context=get_context('fork')) as workers:943 futures.ProcessPoolExecutor(max_workers=62)
19 from concurrent.futures import ProcessPoolExecutor
225 with concurrent.futures.ProcessPoolExecutor(workers) as executor:
149 In the :class:`concurrent.futures.ProcessPoolExecutor`, validate that152 tests that are unrelated to :class:`ProcessPoolExecutor` on those platforms.
445 :class:`concurrent.futures.ProcessPoolExecutor` constructor. Also, free job446 resources in :class:`concurrent.futures.ProcessPoolExecutor` earlier to
744 Fix deadlocks in :class:`concurrent.futures.ProcessPoolExecutor` when task746 sure that calls to the :class:`ProcessPoolExecutor` API always eventually
249 FIX properly close leaking fds in concurrent.futures.ProcessPoolExecutor.
597 Fall back to sequential compilation when ProcessPoolExecutor doesn't exist.
567 Librates the return value of a ProcessPoolExecutor _process_worker after
385 ``ProcessPoolExecutor`` lazily (using :pep:`562`). It makes ``import
536 Workers in :class:`~concurrent.futures.ProcessPoolExecutor` are now spawned
674 Refactor queue_manager in :class:`concurrent.futures.ProcessPoolExecutor` to
837 when adjusting the process count of :class:`ProcessPoolExecutor`.
1123 Limit `max_workers` in `ProcessPoolExecutor` to 61 to work around a
970 When an exception is raised in a task submitted to a ProcessPoolExecutor,1933 ProcessPoolExecutor. Patch by Dan O'Reilly.
816 :class:`ProcessPoolExecutor <concurrent.futures.ProcessPoolExecutor>` and821 The :class:`ProcessPoolExecutor <concurrent.futures.ProcessPoolExecutor>`2432 and :class:`concurrent.futures.ProcessPoolExecutor` now raises
399 and :class:`~concurrent.futures.ProcessPoolExecutor`. This improves403 Workers in :class:`~concurrent.futures.ProcessPoolExecutor` are now spawned on
2715 ProcessPoolExecutor = None variable in main.DummyProcess
429 :class:`~concurrent.futures.ProcessPoolExecutor` class in the new
962 Using concurrent.futures.ProcessPoolExecutor965 If you want to use :class:`concurrent.futures.ProcessPoolExecutor` to start992 with concurrent.futures.ProcessPoolExecutor(max_workers=10) as executor: