Home
last modified time | relevance | path

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

/external/vixl/tools/
Dthreaded_tests.py148 work = pool.map_async(RunTest, tests).get(9999999)
Dclang_format.py147 results = pool.map_async(ClangFormatWrapper, tasks).get(9999999)
Dlint.py163 results = pool.map_async(LintWrapper, tasks).get(9999999)
/external/python/cpython2/Doc/includes/
Dmp_pool.py226 r = pool.map_async(pow3, range(10), callback=A.extend)
/external/autotest/site_utils/
Ddeploy_server.py231 results = pool.map_async(update_server, args)
/external/python/cpython2/Lib/multiprocessing/
Dpool.py251 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/
Dextract_symbols.py422 result = pool.map_async(extract_symbols, vals)
/external/v8/tools/
Dpresubmit.py265 results = pool.map_async(CppLintWorker, commands).get(999999)
/external/python/cpython2/Lib/test/
Dtest_multiprocessing.py1159 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/
Dmultiprocessing.rst1841 .. method:: map_async(func, iterable[, chunksize[, callback]])
1890 :meth:`Pool.map_async`.
/external/python/cpython2/Doc/whatsnew/
D2.6.rst624 and :meth:`map` or :meth:`map_async` to add a number of