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/
Dpool.py184 maxtasksperchild=None, context=None): argument
198 self._maxtasksperchild = maxtasksperchild
314 maxtasksperchild, wrap_exception): argument
322 initargs, maxtasksperchild,
332 initializer, initargs, maxtasksperchild, argument
339 initargs, maxtasksperchild,
506 maxtasksperchild, wrap_exception, sentinels, argument
515 maxtasksperchild, wrap_exception)
Dcontext.py116 maxtasksperchild=None): argument
119 return Pool(processes, initializer, initargs, maxtasksperchild,
/external/autotest/server/cros/dynamic_suite/
Dfakes.py140 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.rst2116 .. class:: Pool([processes[, initializer[, initargs[, maxtasksperchild [, context]]]]])
2128 *maxtasksperchild* is the number of tasks a worker process can complete
2130 unused resources to be freed. The default *maxtasksperchild* is ``None``, which
2153 *maxtasksperchild*
2165 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.py2744 p = multiprocessing.Pool(3, maxtasksperchild=10)
2775 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,