Home
last modified time | relevance | path

Searched refs:map_async (Results 1 – 19 of 19) sorted by relevance

/external/vixl/tools/
Dthreaded_tests.py148 work = pool.map_async(RunTest, tests).get(9999999)
Dclang_format.py169 results = pool.map_async(ClangFormatWrapper, tasks).get(9999999)
Dlint.py163 results = pool.map_async(LintWrapper, tasks).get(9999999)
/external/autotest/site_utils/
Ddeploy_server.py130 results = pool.map_async(do_server, servers)
/external/python/cpython2/Doc/includes/
Dmp_pool.py226 r = pool.map_async(pow3, range(10), callback=A.extend)
/external/python/cpython2/Lib/multiprocessing/
Dpool.py253 return self.map_async(func, iterable, chunksize).get()
300 def map_async(self, func, iterable, chunksize=None, callback=None): member in Pool
/external/swiftshader/third_party/llvm-7.0/llvm/utils/
Dextract_symbols.py430 result = pool.map_async(extract_symbols, vals)
/external/llvm/utils/
Dextract_symbols.py422 result = pool.map_async(extract_symbols, vals)
/external/pdfium/testing/tools/
Dsafetynet_compare.py446 worker_results = (pool.map_async(worker_func, self.test_cases)
/external/v8/tools/
Dv8_presubmit.py263 results = pool.map_async(CppLintWorker, commands).get(999999)
/external/python/cpython3/Lib/test/
D_test_multiprocessing.py2271 self.assertEqual(self.pool.map_async(sqr, list(range(10))).get(),
2276 self.pool.map_async(int, ['1'],
2281 self.pool.map_async(int, ['a'],
2299 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
2440 result = self.pool.map_async(
2456 self.assertEqual(p.map_async(sqr, []).get(), [])
2466 r = p.map_async(sqr, L)
2469 self.assertRaises(ValueError, p.map_async, sqr, L)
/external/python/cpython3/Lib/multiprocessing/
Dpool.py367 def map_async(self, func, iterable, chunksize=None, callback=None, member in Pool
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1213 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
1305 result = p.map_async(
1320 self.assertEqual(p.map_async(sqr, []).get(), [])
/external/python/cpython3/Doc/library/
Dmultiprocessing.rst2155 .. method:: map_async(func, iterable[, chunksize[, callback[, error_callback]]])
2203 A combination of :meth:`starmap` and :meth:`map_async` that iterates over
2234 :meth:`Pool.map_async`.
/external/python/cpython2/Doc/library/
Dmultiprocessing.rst1846 .. method:: map_async(func, iterable[, chunksize[, callback]])
1895 :meth:`Pool.map_async`.
/external/python/cpython3/Doc/whatsnew/
D3.3.rst1553 :meth:`~multiprocessing.pool.Pool.map_async` functions. (Contributed by Hynek
D2.6.rst628 and :meth:`map` or :meth:`map_async` to add a number of
/external/python/cpython2/Doc/whatsnew/
D2.6.rst624 and :meth:`map` or :meth:`map_async` to add a number of
/external/python/cpython3/Misc/
DHISTORY5726 - Issue #16307: Fix multiprocessing.Pool.map_async not calling its callbacks.
11582 - Issue #9244: The ``apply_async()`` and ``map_async()`` methods of