Searched refs:maxtasksperchild (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/multiprocessing/ |
D | pool.py | 184 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)
|
D | context.py | 116 maxtasksperchild=None): argument 119 return Pool(processes, initializer, initargs, maxtasksperchild,
|
/third_party/python/Doc/library/ |
D | multiprocessing.rst | 2124 .. class:: Pool([processes[, initializer[, initargs[, maxtasksperchild [, context]]]]]) 2136 *maxtasksperchild* is the number of tasks a worker process can complete 2138 unused resources to be freed. The default *maxtasksperchild* is ``None``, which 2161 *maxtasksperchild* 2173 process spawned to replace the old one. The *maxtasksperchild* 2697 Unlike :class:`Pool`, *maxtasksperchild* and *context* cannot be provided.
|
/third_party/python/Lib/test/ |
D | _test_multiprocessing.py | 2760 p = multiprocessing.Pool(3, maxtasksperchild=10) 2791 p = multiprocessing.Pool(3, maxtasksperchild=1)
|
/third_party/python/Doc/whatsnew/ |
D | 2.7.rst | 1424 now has an optional *maxtasksperchild* parameter. Worker processes
|
/third_party/python/Misc/ |
D | HISTORY | 13782 - Issue #6963: Added "maxtasksperchild" argument to multiprocessing.Pool,
|