Home
last modified time | relevance | path

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

/external/python/cpython3/Doc/includes/
Dmp_pool.py55 imap_unordered_it = pool.imap_unordered(calculatestar, TASKS)
/external/autotest/site_utils/
Dadd_detected_host_labels.py135 successes = sum(threadpool.imap_unordered(
/external/autotest/tko/
Dretrieve_logs.cgi138 for result_path in tpool.imap_unordered(_check_result, tpool_args):
/external/perfetto/infra/ci/worker/
Dartifacts_uploader.py129 for upl_size in pool.imap_unordered(upload_one_file_with_retries, files):
/external/python/cpython2/Doc/includes/
Dmp_pool.py70 imap_unordered_it = pool.imap_unordered(calculatestar, TASKS)
/external/libxkbcommon/test/
Dxkeyboard-config-test.py.in165 results = p.imap_unordered(tool, combos)
/external/python/pybind11/pybind11/
Dsetup_helpers.py425 for _ in ThreadPool(threads).imap_unordered(_single_compile, objects):
/external/libchrome/base/android/jni_generator/
Djni_registration_generator.py47 results = [d for d in pool.imap_unordered(_DictForPath, paths) if d]
/external/jsoncpp/.travis_scripts/
Drun-clang-format.py323 it = pool.imap_unordered(
/external/clang/tools/scan-build-py/libscanbuild/
Danalyze.py118 for current in pool.imap_unordered(run, generator):
/external/toolchain-utils/toolchain_utils_githooks/
Dcheck-presubmit.py629 for check_name, result in pool.imap_unordered(run_check, checks):
Dcheck-presubmit629 for check_name, result in pool.imap_unordered(run_check, checks):
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1263 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/
D3.5.0a3.rst429 multiprocessing.Pool methods imap() and imap_unordered() now handle
/external/llvm-project/clang/tools/scan-build-py/libscanbuild/
Danalyze.py236 for current in pool.imap_unordered(run, generator):
/external/python/cpython2/Lib/multiprocessing/
Dpool.py273 def imap_unordered(self, func, iterable, chunksize=1): member in Pool
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py2486 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/
Dpool.py422 def imap_unordered(self, func, iterable, chunksize=1): member in Pool
/external/python/cpython2/Misc/NEWS.d/
D2.7.10rc1.rst311 multiprocessing.Pool methods imap() and imap_unordered() now handle
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst278 for i in pool.imap_unordered(f, range(10)):
1869 .. method:: imap_unordered(func, iterable[, chunksize])
/external/python/cpython3/Misc/
DHISTORY657 - Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now