Home
last modified time | relevance | path

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

/external/vixl/tools/
Dthread_pool.py53 pool.map_async(function, list_of_args).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/pdfium/testing/tools/
Dsafetynet_image.py123 pool.map_async(
Dsafetynet_compare.py451 pool.map_async(worker_func, self.test_cases).get(one_year_in_seconds))
/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/python/cpython3/Lib/test/
D_test_multiprocessing.py2371 self.assertEqual(self.pool.map_async(sqr, list(range(10))).get(),
2376 self.pool.map_async(int, ['1'],
2381 self.pool.map_async(int, ['a'],
2399 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1)
2540 result = self.pool.map_async(
2556 self.assertEqual(p.map_async(sqr, []).get(), [])
2566 r = p.map_async(sqr, L)
2569 self.assertRaises(ValueError, p.map_async, sqr, L)
/external/python/cpython3/Lib/multiprocessing/
Dpool.py460 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.rst2183 .. method:: map_async(func, iterable[, chunksize[, callback[, error_callback]]])
2231 A combination of :meth:`starmap` and :meth:`map_async` that iterates over
2262 :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