/external/python/cpython3/Doc/includes/ |
D | mp_pool.py | 55 imap_unordered_it = pool.imap_unordered(calculatestar, TASKS)
|
/external/autotest/site_utils/ |
D | add_detected_host_labels.py | 135 successes = sum(threadpool.imap_unordered(
|
/external/autotest/tko/ |
D | retrieve_logs.cgi | 138 for result_path in tpool.imap_unordered(_check_result, tpool_args):
|
/external/perfetto/infra/ci/worker/ |
D | artifacts_uploader.py | 129 for upl_size in pool.imap_unordered(upload_one_file_with_retries, files):
|
/external/python/cpython2/Doc/includes/ |
D | mp_pool.py | 70 imap_unordered_it = pool.imap_unordered(calculatestar, TASKS)
|
/external/libxkbcommon/test/ |
D | xkeyboard-config-test.py.in | 165 results = p.imap_unordered(tool, combos)
|
/external/python/pybind11/pybind11/ |
D | setup_helpers.py | 425 for _ in ThreadPool(threads).imap_unordered(_single_compile, objects):
|
/external/libchrome/base/android/jni_generator/ |
D | jni_registration_generator.py | 47 results = [d for d in pool.imap_unordered(_DictForPath, paths) if d]
|
/external/jsoncpp/.travis_scripts/ |
D | run-clang-format.py | 323 it = pool.imap_unordered(
|
/external/clang/tools/scan-build-py/libscanbuild/ |
D | analyze.py | 118 for current in pool.imap_unordered(run, generator):
|
/external/toolchain-utils/toolchain_utils_githooks/ |
D | check-presubmit.py | 629 for check_name, result in pool.imap_unordered(run_check, checks):
|
D | check-presubmit | 629 for check_name, result in pool.imap_unordered(run_check, checks):
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1263 it = self.pool.imap_unordered(sqr, range(100)) 1266 it = self.pool.imap_unordered(sqr, range(1000), chunksize=100) 1273 it = self.pool.imap_unordered(sqr, 1284 it = self.pool.imap_unordered(sqr, 1319 self.assertEqual(list(p.imap_unordered(sqr, [])), [])
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a3.rst | 429 multiprocessing.Pool methods imap() and imap_unordered() now handle
|
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/ |
D | analyze.py | 236 for current in pool.imap_unordered(run, generator):
|
/external/python/cpython2/Lib/multiprocessing/ |
D | pool.py | 273 def imap_unordered(self, func, iterable, chunksize=1): member in Pool
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2486 it = self.pool.imap_unordered(sqr, list(range(10))) 2489 it = self.pool.imap_unordered(sqr, list(range(1000)), chunksize=100) 2497 it = self.pool.imap_unordered(sqr, 2502 it = self.pool.imap_unordered(sqr, 2507 it = self.pool.imap_unordered(sqr, 2518 it = self.pool.imap_unordered(sqr, 2559 self.assertEqual(list(p.imap_unordered(sqr, [])), [])
|
/external/python/cpython3/Lib/multiprocessing/ |
D | pool.py | 422 def imap_unordered(self, func, iterable, chunksize=1): member in Pool
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.10rc1.rst | 311 multiprocessing.Pool methods imap() and imap_unordered() now handle
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 278 for i in pool.imap_unordered(f, range(10)): 1869 .. method:: imap_unordered(func, iterable[, chunksize])
|
/external/python/cpython3/Misc/ |
D | HISTORY | 657 - Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now
|