Home
last modified time | relevance | path

Searched refs:ProcessPoolExecutor (Results 1 – 25 of 34) sorted by relevance

12

/third_party/python/Lib/concurrent/futures/
D__init__.py41 global ProcessPoolExecutor, ThreadPoolExecutor
44 from .process import ProcessPoolExecutor as pe
45 ProcessPoolExecutor = pe
Dprocess.py580 class ProcessPoolExecutor(_base.Executor): class
/third_party/python/Doc/library/
Dconcurrent.futures.rst19 :class:`ProcessPoolExecutor`. Both implement the same interface, which is
59 When using :class:`ProcessPoolExecutor`, this method chops *iterables*
164 for :class:`ProcessPoolExecutor`.
218 ProcessPoolExecutor chapter
221 The :class:`ProcessPoolExecutor` class is an :class:`Executor` subclass that
223 :class:`ProcessPoolExecutor` uses the :mod:`multiprocessing` module, which
229 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 …]
Dasyncio-dev.rst118 with a :class:`concurrent.futures.ProcessPoolExecutor` to execute
/third_party/python/Lib/
Dcompileall.py76 ProcessPoolExecutor = None
94 from concurrent.futures import ProcessPoolExecutor
99 if workers != 1 and ProcessPoolExecutor is not None:
102 with ProcessPoolExecutor(max_workers=workers) as executor:
/third_party/python/Lib/test/
Dtest_concurrent_futures.py158 executor_type = futures.ProcessPoolExecutor
172 executor_type = futures.ProcessPoolExecutor
184 executor_type = futures.ProcessPoolExecutor
389 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)
Dtest_compileall.py19 from concurrent.futures import ProcessPoolExecutor
/third_party/cef/tools/yapf/yapf/
D__init__.py225 with concurrent.futures.ProcessPoolExecutor(workers) as executor:
/third_party/python/Misc/NEWS.d/
D3.10.0a6.rst149 In the :class:`concurrent.futures.ProcessPoolExecutor`, validate that
152 tests that are unrelated to :class:`ProcessPoolExecutor` on those platforms.
D3.7.0a2.rst445 :class:`concurrent.futures.ProcessPoolExecutor` constructor. Also, free job
446 resources in :class:`concurrent.futures.ProcessPoolExecutor` earlier to
D3.7.0a4.rst744 Fix deadlocks in :class:`concurrent.futures.ProcessPoolExecutor` when task
746 sure that calls to the :class:`ProcessPoolExecutor` API always eventually
D3.7.0b3.rst249 FIX properly close leaking fds in concurrent.futures.ProcessPoolExecutor.
D3.5.0b1.rst597 Fall back to sequential compilation when ProcessPoolExecutor doesn't exist.
D3.8.0a3.rst567 Librates the return value of a ProcessPoolExecutor _process_worker after
D3.7.0b1.rst385 ``ProcessPoolExecutor`` lazily (using :pep:`562`). It makes ``import
D3.9.0a6.rst536 Workers in :class:`~concurrent.futures.ProcessPoolExecutor` are now spawned
D3.9.0a5.rst674 Refactor queue_manager in :class:`concurrent.futures.ProcessPoolExecutor` to
D3.10.1.rst837 when adjusting the process count of :class:`ProcessPoolExecutor`.
D3.8.0b1.rst1123 Limit `max_workers` in `ProcessPoolExecutor` to 61 to work around a
D3.5.0a1.rst970 When an exception is raised in a task submitted to a ProcessPoolExecutor,
1933 ProcessPoolExecutor. Patch by Dan O'Reilly.
/third_party/python/Doc/whatsnew/
D3.7.rst816 :class:`ProcessPoolExecutor <concurrent.futures.ProcessPoolExecutor>` and
821 The :class:`ProcessPoolExecutor <concurrent.futures.ProcessPoolExecutor>`
2432 and :class:`concurrent.futures.ProcessPoolExecutor` now raises
D3.9.rst399 and :class:`~concurrent.futures.ProcessPoolExecutor`. This improves
403 Workers in :class:`~concurrent.futures.ProcessPoolExecutor` are now spawned on
/third_party/python/
Dsetup.py2715 ProcessPoolExecutor = None variable in main.DummyProcess
/third_party/python/Doc/faq/
Dlibrary.rst429 :class:`~concurrent.futures.ProcessPoolExecutor` class in the new
/third_party/python/Doc/howto/
Dlogging-cookbook.rst962 Using concurrent.futures.ProcessPoolExecutor
965 If you want to use :class:`concurrent.futures.ProcessPoolExecutor` to start
992 with concurrent.futures.ProcessPoolExecutor(max_workers=10) as executor:

12