Home
last modified time | relevance | path

Searched refs:as_completed (Results 1 – 24 of 24) sorted by relevance

/external/python/futures/
Dcrawl.py13 from concurrent.futures import (as_completed, ThreadPoolExecutor,
47 for future in as_completed(future_to_url):
Dtest_futures.py425 completed = set(futures.as_completed(
441 for future in futures.as_completed(
460 completed = [f for f in futures.as_completed([future1,future1])]
/external/llvm-project/llvm/utils/
Dupdate_test_prefix.py6 from concurrent.futures import ThreadPoolExecutor, as_completed
47 for i in as_completed(t):
/external/python/futures/concurrent/futures/
D__init__.py16 as_completed)
D_base.py198 def as_completed(fs, timeout=None): function
/external/python/cpython3/Lib/concurrent/futures/
D__init__.py18 as_completed)
D_base.py201 def as_completed(fs, timeout=None): function
/external/python/cpython3/Misc/NEWS.d/
D3.6.3.rst7 Re-allow arbitrary iterables in `concurrent.futures.as_completed()`. Fixes
D3.6.3rc1.rst398 The ``map()`` and ``as_completed()`` iterators in ``concurrent.futures`` now
D3.7.0a1.rst1756 The ``map()`` and ``as_completed()`` iterators in ``concurrent.futures`` now
D3.8.0a1.rst2992 :func:`as_completed`, in order to prevent timeouts from deviating when the
/external/python/futures/docs/
Dindex.rst139 for future in futures.as_completed(future_to_url):
278 on the :class:`Future` completing (i.e. through :func:`as_completed` or
336 .. function:: as_completed(fs, timeout=None)
342 before :func:`as_completed` is called will be yielded first. The returned
345 original call to :func:`as_completed`. *timeout* can be an int or float.
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst208 for future in concurrent.futures.as_completed(future_to_url):
396 :func:`as_completed` or :func:`wait`) will be woken up.
469 .. function:: as_completed(fs, timeout=None)
475 :func:`as_completed` is called will be yielded first. The returned iterator
478 original call to :func:`as_completed`. *timeout* can be an int or float. If
Dasyncio-api-index.rst57 * - ``for in`` :func:`as_completed`
Dasyncio-future.rst260 :func:`concurrent.futures.as_completed` functions.
Dasyncio-task.rst593 .. function:: as_completed(aws, \*, loop=None, timeout=None)
608 for coro in as_completed(aws):
/external/python/cpython3/Lib/test/
Dtest_concurrent_futures.py694 completed = set(futures.as_completed(
710 for future in futures.as_completed(
731 f for f in futures.as_completed(itertools.repeat(future1, 3))
743 for future in futures.as_completed(futures_list, timeout=0):
750 for future in futures.as_completed(futures_list):
763 list(futures.as_completed(futures_list, timeout=0))
/external/yapf/yapf/
D__init__.py247 for future in concurrent.futures.as_completed(future_formats):
/external/oss-fuzz/infra/build/functions/
Dupdate_build_status.py184 for future in concurrent.futures.as_completed(futures):
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1606 for f in asyncio.as_completed([b, c, a], loop=loop):
1636 for f in asyncio.as_completed([a, b], timeout=0.12, loop=loop):
1670 for f in asyncio.as_completed([a], timeout=1, loop=loop):
1691 futs = list(asyncio.as_completed(fs, loop=loop))
1717 futs = list(asyncio.as_completed(fs, loop=loop))
1737 for f in asyncio.as_completed([c, c, coro('spam')],
2213 asyncio.as_completed(fut, loop=self.loop))
2216 asyncio.as_completed(coro, loop=self.loop))
/external/python/cpython3/Lib/asyncio/
Dtasks.py559 def as_completed(fs, *, loop=None, timeout=None): function
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
D_rpc_test.py418 futures.as_completed(response_futures),
/external/python/cpython3/Doc/whatsnew/
D3.8.rst1682 :func:`asyncio.wait_for`, :func:`asyncio.wait`, :func:`asyncio.as_completed`,
/external/python/cpython3/Misc/
DHISTORY2277 - Issue #20566: Change asyncio.as_completed() to use a Queue, to
2287 TimerHandle; as_completed() and wait() raise TypeError if the passed
2465 in gather(), wait(), as_completed(); use a bytearray for buffering
2494 - Issue #20367: Fix behavior of concurrent.futures.as_completed() for