Home
last modified time | relevance | path

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

/external/v8/tools/testrunner/local/
Dpool_unittest.py26 for result in pool.imap_unordered(Run, [[x] for x in range(0, 10)]):
37 for result in pool.imap_unordered(Run, [[x] for x in range(0, 12)]):
50 for result in pool.imap_unordered(Run, [[x] for x in range(0, 10)]):
Dpool.py126 def imap_unordered(self, fn, gen, member in Pool
/external/v8/tools/sanitizers/
Dsancov_formatter.py221 results = pool.imap_unordered(get_instrumented_lines, exe_list)
359 results = pool.imap_unordered(get_covered_lines, inputs)
/external/python/cpython3/Doc/includes/
Dmp_pool.py55 imap_unordered_it = pool.imap_unordered(calculatestar, TASKS)
/external/v8/tools/testrunner/testproc/
Dexecution.py56 it = self._pool.imap_unordered(
/external/autotest/site_utils/
Dadd_detected_host_labels.py131 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/git_mirror_bot/
Dmirror_aosp_to_ghub_repo.py207 for res in pool.imap_unordered(TranslateClIntoBranch, changes.iteritems()):
/external/python/cpython2/Doc/includes/
Dmp_pool.py70 imap_unordered_it = pool.imap_unordered(calculatestar, TASKS)
/external/libchrome/base/android/jni_generator/
Djni_registration_generator.py47 results = [d for d in pool.imap_unordered(_DictForPath, paths) if d]
/external/v8/tools/clang/scripts/
Drun_tool.py277 result_iterator = pool.imap_unordered(
/external/v8/tools/
Dbigint-tester.py343 for r in pool.imap_unordered(WrapRunOne, RunAll(args)):
/external/clang/tools/scan-build-py/libscanbuild/
Danalyze.py118 for current in pool.imap_unordered(run, generator):
/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/python/cpython3/Lib/test/
D_test_multiprocessing.py2382 it = self.pool.imap_unordered(sqr, list(range(10)))
2385 it = self.pool.imap_unordered(sqr, list(range(1000)), chunksize=100)
2393 it = self.pool.imap_unordered(sqr,
2398 it = self.pool.imap_unordered(sqr,
2403 it = self.pool.imap_unordered(sqr,
2414 it = self.pool.imap_unordered(sqr,
2455 self.assertEqual(list(p.imap_unordered(sqr, [])), [])
/external/python/cpython2/Lib/multiprocessing/
Dpool.py273 def imap_unordered(self, func, iterable, chunksize=1): member in Pool
/external/python/cpython3/Lib/multiprocessing/
Dpool.py327 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/cpython3/Doc/library/
Dmultiprocessing.rst389 for i in pool.imap_unordered(f, range(10)):
2152 using :meth:`imap` or :meth:`imap_unordered` with explicit *chunksize*
2185 .. method:: imap_unordered(func, iterable[, chunksize])
/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