Searched refs:map_async (Results 1 – 18 of 18) sorted by relevance
/external/vixl/tools/ |
D | thread_pool.py | 53 pool.map_async(function, list_of_args).get(9999999)
|
D | lint.py | 163 results = pool.map_async(LintWrapper, tasks).get(9999999)
|
/external/autotest/site_utils/ |
D | deploy_server.py | 130 results = pool.map_async(do_server, servers)
|
/external/python/cpython2/Doc/includes/ |
D | mp_pool.py | 226 r = pool.map_async(pow3, range(10), callback=A.extend)
|
/external/pdfium/testing/tools/ |
D | safetynet_image.py | 123 pool.map_async(
|
D | safetynet_compare.py | 451 pool.map_async(worker_func, self.test_cases).get(one_year_in_seconds))
|
/external/python/cpython2/Lib/multiprocessing/ |
D | pool.py | 253 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/ |
D | extract_symbols.py | 430 result = pool.map_async(extract_symbols, vals)
|
/external/llvm/utils/ |
D | extract_symbols.py | 422 result = pool.map_async(extract_symbols, vals)
|
/external/python/cpython3/Lib/test/ |
D | _test_multiprocessing.py | 2371 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/ |
D | pool.py | 460 def map_async(self, func, iterable, chunksize=None, callback=None, member in Pool
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1213 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/ |
D | multiprocessing.rst | 2183 .. 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/ |
D | multiprocessing.rst | 1846 .. method:: map_async(func, iterable[, chunksize[, callback]]) 1895 :meth:`Pool.map_async`.
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.3.rst | 1553 :meth:`~multiprocessing.pool.Pool.map_async` functions. (Contributed by Hynek
|
D | 2.6.rst | 628 and :meth:`map` or :meth:`map_async` to add a number of
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 624 and :meth:`map` or :meth:`map_async` to add a number of
|
/external/python/cpython3/Misc/ |
D | HISTORY | 5726 - Issue #16307: Fix multiprocessing.Pool.map_async not calling its callbacks. 11582 - Issue #9244: The ``apply_async()`` and ``map_async()`` methods of
|