Home
last modified time | relevance | path

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

/third_party/python/Lib/concurrent/futures/
D__init__.py18 as_completed)
D_base.py201 def as_completed(fs, timeout=None): function
/third_party/python/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.10.0b1.rst1221 :func:`~asyncio.as_completed` and constructors of :class:`~asyncio.Future`,
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
/third_party/python/Lib/test/
Dtest_concurrent_futures.py720 completed = set(futures.as_completed(
736 for future in futures.as_completed(
757 f for f in futures.as_completed(itertools.repeat(future1, 3))
769 for future in futures.as_completed(futures_list, timeout=0):
777 for future in futures.as_completed(futures_list):
791 list(futures.as_completed(futures_list, timeout=0))
/third_party/python/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.
470 .. function:: as_completed(fs, timeout=None)
476 :func:`as_completed` is called will be yielded first. The returned iterator
479 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.rst275 :func:`concurrent.futures.as_completed` functions.
Dasyncio-task.rst654 .. function:: as_completed(aws, *, timeout=None)
672 for coro in as_completed(aws):
/third_party/cef/tools/yapf/yapf/
D__init__.py231 for future in concurrent.futures.as_completed(future_formats):
/third_party/python/Lib/test/test_asyncio/
Dtest_tasks.py1585 for f in asyncio.as_completed([b, c, a]):
1614 for f in asyncio.as_completed([a, b], timeout=0.12):
1647 for f in asyncio.as_completed([a], timeout=1):
1667 futs = list(asyncio.as_completed(fs))
1694 futs = list(asyncio.as_completed(fs))
1718 for f in asyncio.as_completed([c, c, coro('spam')]):
1735 futs = asyncio.as_completed([a])
1748 futs = list(asyncio.as_completed([coro()]))
1762 futs = asyncio.as_completed([coro()])
2269 asyncio.as_completed(fut))
[all …]
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_rpc_part_2_test.py270 futures.as_completed(response_futures),
D_rpc_test.py486 futures.as_completed(response_futures),
/third_party/python/Lib/asyncio/
Dtasks.py524 def as_completed(fs, *, timeout=None): function
/third_party/python/Doc/whatsnew/
D3.8.rst1683 :func:`asyncio.wait_for`, :func:`asyncio.wait`, :func:`asyncio.as_completed`,
D3.10.rst1697 :func:`~asyncio.shield`, :func:`~asyncio.as_completed` and constructors of
/third_party/python/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