Home
last modified time | relevance | path

Searched refs:as_completed (Results 1 – 21 of 21) 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/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__.py17 as_completed)
D_base.py196 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.7.1rc2.rst96 :func:`as_completed`, in order to prevent timeouts from deviating when the
D3.6.3rc1.rst399 The ``map()`` and ``as_completed()`` iterators in ``concurrent.futures`` now
D3.7.0a1.rst1757 The ``map()`` and ``as_completed()`` iterators in ``concurrent.futures`` now
/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/Lib/test/
Dtest_concurrent_futures.py574 completed = set(futures.as_completed(
590 for future in futures.as_completed(
611 f for f in futures.as_completed(itertools.repeat(future1, 3))
623 for future in futures.as_completed(futures_list, timeout=0):
630 for future in futures.as_completed(futures_list):
643 list(futures.as_completed(futures_list, timeout=0))
/external/python/cpython3/Doc/library/
Dconcurrent.futures.rst187 for future in concurrent.futures.as_completed(future_to_url):
365 :func:`as_completed` or :func:`wait`) will be woken up.
428 .. function:: as_completed(fs, timeout=None)
434 :func:`as_completed` is called will be yielded first. The returned iterator
437 original call to :func:`as_completed`. *timeout* can be an int or float. If
Dasyncio-api-index.rst54 * - ``for in`` :func:`as_completed`
Dasyncio-future.rst250 :func:`concurrent.futures.as_completed` functions.
Dasyncio-task.rst551 .. function:: as_completed(aws, \*, loop=None, timeout=None)
563 for f in as_completed(aws):
/external/yapf/yapf/
D__init__.py247 for future in concurrent.futures.as_completed(future_formats):
/external/python/cpython3/Lib/test/test_asyncio/
Dtest_tasks.py1207 for f in asyncio.as_completed([b, c, a], loop=loop):
1236 for f in asyncio.as_completed([a, b], timeout=0.12, loop=loop):
1269 for f in asyncio.as_completed([a], timeout=1, loop=loop):
1287 futs = list(asyncio.as_completed(fs, loop=loop))
1312 futs = list(asyncio.as_completed(fs, loop=loop))
1328 for f in asyncio.as_completed([c, c, coro('spam')],
1822 asyncio.as_completed(fut, loop=self.loop))
1825 asyncio.as_completed(coro, loop=self.loop))
/external/python/cpython3/Lib/asyncio/
Dtasks.py488 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/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