Home
last modified time | relevance | path

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

/third_party/python/Lib/concurrent/futures/
D__init__.py41 global ProcessPoolExecutor, ThreadPoolExecutor
44 from .process import ProcessPoolExecutor as pe
45 ProcessPoolExecutor = pe
Dprocess.py615 class ProcessPoolExecutor(_base.Executor): class
/third_party/python/Doc/library/
Dconcurrent.futures.rst19 :class:`ProcessPoolExecutor`. Both implement the same interface, which is
60 When using :class:`ProcessPoolExecutor`, this method chops *iterables*
172 for :class:`ProcessPoolExecutor`.
226 ProcessPoolExecutor chapter
229 The :class:`ProcessPoolExecutor` class is an :class:`Executor` subclass that
231 :class:`ProcessPoolExecutor` uses the :mod:`multiprocessing` module, which
237 that :class:`ProcessPoolExecutor` will not work in the interactive interpreter.
240 to a :class:`ProcessPoolExecutor` will result in deadlock.
242 .. class:: ProcessPoolExecutor(max_workers=None, mp_context=None, initializer=None, initargs=(), ma…
290 ProcessPoolExecutor Example
[all …]
Dasyncio-dev.rst118 with a :class:`concurrent.futures.ProcessPoolExecutor` to execute
Dasyncio-eventloop.rst1250 with concurrent.futures.ProcessPoolExecutor() as pool:
1260 which is used by :class:`~concurrent.futures.ProcessPoolExecutor`.
Dthreading.rst44 :mod:`multiprocessing` or :class:`concurrent.futures.ProcessPoolExecutor`.
Dmultiprocessing.rst50 :class:`concurrent.futures.ProcessPoolExecutor` offers a higher level interface
/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.py155 executor_type = futures.ProcessPoolExecutor
169 executor_type = futures.ProcessPoolExecutor
181 executor_type = futures.ProcessPoolExecutor
383 if self.executor_type == futures.ProcessPoolExecutor:
547 with futures.ProcessPoolExecutor(
557 executor = futures.ProcessPoolExecutor(
581 executor = futures.ProcessPoolExecutor(
959 with futures.ProcessPoolExecutor(1, mp_context=mp.get_context('fork')) as workers:
996 futures.ProcessPoolExecutor(max_workers=62)
Dtest_compileall.py21 from concurrent.futures import ProcessPoolExecutor
/third_party/python/
Dsetup.py1590 ProcessPoolExecutor = None variable in main.DummyProcess
/third_party/python/Doc/whatsnew/
D3.7.rst816 :class:`ProcessPoolExecutor <concurrent.futures.ProcessPoolExecutor>` and
821 The :class:`ProcessPoolExecutor <concurrent.futures.ProcessPoolExecutor>`
2433 and :class:`concurrent.futures.ProcessPoolExecutor` now raises
D3.9.rst397 and :class:`~concurrent.futures.ProcessPoolExecutor`. This improves
401 Workers in :class:`~concurrent.futures.ProcessPoolExecutor` are now spawned on
D3.5.rst981 :meth:`~concurrent.futures.ProcessPoolExecutor` is used.
D3.8.rst1733 :class:`concurrent.futures.ProcessPoolExecutor`.
D3.2.rst289 :class:`~concurrent.futures.ProcessPoolExecutor`.
/third_party/python/Doc/faq/
Dlibrary.rst426 :class:`~concurrent.futures.ProcessPoolExecutor` class in the new
/third_party/python/Doc/howto/
Dlogging-cookbook.rst1493 Using concurrent.futures.ProcessPoolExecutor
1496 If you want to use :class:`concurrent.futures.ProcessPoolExecutor` to start
1523 with concurrent.futures.ProcessPoolExecutor(max_workers=10) as executor:
/third_party/python/Lib/test/test_asyncio/
Dtest_events.py2731 pool = concurrent.futures.ProcessPoolExecutor()
/third_party/python/Misc/
DNEWS430 ``ProcessPoolExecutor`` shutdown could hang after a future has been
2528 :class:`concurrent.futures.ProcessPoolExecutor` are no longer spawned on
3031 - gh-issue-90622: In ``concurrent.futures.process.ProcessPoolExecutor``
3126 - bpo-46787: Fix :class:`concurrent.futures.ProcessPoolExecutor` exception
5501 :class:`concurrent.futures.ProcessPoolExecutor`. This allows users to
5511 :class:`ProcessPoolExecutor`.
9362 - bpo-40692: In the :class:`concurrent.futures.ProcessPoolExecutor`,
9366 :class:`ProcessPoolExecutor` on those platforms.
12793 - bpo-39207: Workers in :class:`~concurrent.futures.ProcessPoolExecutor` are
13306 :class:`concurrent.futures.ProcessPoolExecutor` to make it easier to
[all …]
DHISTORY8870 - Issue #12364: Fix a hang in concurrent.futures.ProcessPoolExecutor.
9366 ProcessPoolExecutor.
9368 - Fix potential resource leaks in concurrent.futures.ProcessPoolExecutor
9531 - Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killed
9799 concurrent.futures.ProcessPoolExecutor.