Home
last modified time | relevance | path

Searched refs:maxtasksperchild (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
D__init__.py227 def Pool(processes=None, initializer=None, initargs=(), maxtasksperchild=None): argument
232 return Pool(processes, initializer, initargs, maxtasksperchild)
Dpool.py139 maxtasksperchild=None): argument
144 self._maxtasksperchild = maxtasksperchild
/external/python/cpython3/Lib/multiprocessing/
Dcontext.py115 maxtasksperchild=None): argument
118 return Pool(processes, initializer, initargs, maxtasksperchild,
Dpool.py156 maxtasksperchild=None, context=None): argument
162 self._maxtasksperchild = maxtasksperchild
/external/autotest/server/cros/dynamic_suite/
Dfakes.py135 maxtasksperchild=None): argument
/external/python/cpython2/Misc/NEWS.d/
D2.7a2.rst145 Added "maxtasksperchild" argument to ``multiprocessing.Pool``, allowing for
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst2077 .. class:: Pool([processes[, initializer[, initargs[, maxtasksperchild [, context]]]]])
2089 *maxtasksperchild* is the number of tasks a worker process can complete
2091 unused resources to be freed. The default *maxtasksperchild* is ``None``, which
2104 *maxtasksperchild*
2116 process spawned to replace the old one. The *maxtasksperchild*
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1362 p = multiprocessing.Pool(3, maxtasksperchild=10)
1393 p = multiprocessing.Pool(3, maxtasksperchild=1)
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1791 .. class:: multiprocessing.Pool([processes[, initializer[, initargs[, maxtasksperchild]]]])
1806 *maxtasksperchild* is the number of tasks a worker process can complete
1808 unused resources to be freed. The default *maxtasksperchild* is ``None``, which
1818 process spawned to replace the old one. The *maxtasksperchild*
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py2609 p = multiprocessing.Pool(3, maxtasksperchild=10)
2640 p = multiprocessing.Pool(3, maxtasksperchild=1)
/external/python/cpython3/Doc/whatsnew/
D2.7.rst1424 now has an optional *maxtasksperchild* parameter. Worker processes
/external/python/cpython2/Doc/whatsnew/
D2.7.rst1409 now has an optional *maxtasksperchild* parameter. Worker processes
/external/python/cpython3/Misc/
DHISTORY13782 - Issue #6963: Added "maxtasksperchild" argument to multiprocessing.Pool,