Searched refs:map_async (Results 1 – 11 of 11) sorted by relevance
/external/vixl/tools/ |
D | threaded_tests.py | 148 work = pool.map_async(RunTest, tests).get(9999999)
|
D | clang_format.py | 147 results = pool.map_async(ClangFormatWrapper, tasks).get(9999999)
|
D | lint.py | 163 results = pool.map_async(LintWrapper, tasks).get(9999999)
|
/external/python/cpython2/Doc/includes/ |
D | mp_pool.py | 226 r = pool.map_async(pow3, range(10), callback=A.extend)
|
/external/autotest/site_utils/ |
D | deploy_server.py | 231 results = pool.map_async(update_server, args)
|
/external/python/cpython2/Lib/multiprocessing/ |
D | pool.py | 251 return self.map_async(func, iterable, chunksize).get() 298 def map_async(self, func, iterable, chunksize=None, callback=None): member in Pool
|
/external/llvm/utils/ |
D | extract_symbols.py | 422 result = pool.map_async(extract_symbols, vals)
|
/external/v8/tools/ |
D | presubmit.py | 265 results = pool.map_async(CppLintWorker, commands).get(999999)
|
/external/python/cpython2/Lib/test/ |
D | test_multiprocessing.py | 1159 self.pool.map_async(sqr, [], chunksize=1).get(timeout=TIMEOUT1) 1251 result = p.map_async( 1266 self.assertEqual(p.map_async(sqr, []).get(), [])
|
/external/python/cpython2/Doc/library/ |
D | multiprocessing.rst | 1841 .. method:: map_async(func, iterable[, chunksize[, callback]]) 1890 :meth:`Pool.map_async`.
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 624 and :meth:`map` or :meth:`map_async` to add a number of
|