/third_party/grpc/src/python/grpcio/grpc/framework/foundation/ |
D | logging_pool.py | 53 def map(self, func, *iterables, **kwargs): argument 55 *iterables,
|
/third_party/python/Doc/library/ |
D | itertools.rst | 173 .. function:: chain(*iterables) 176 exhausted, then proceeds to the next iterable, until all of the iterables are 180 def chain(*iterables): 182 for it in iterables: 192 def from_iterable(iterables): 194 for it in iterables: 299 Stops when either the *data* or *selectors* iterables has been exhausted. 556 .. function:: product(*iterables, repeat=1) 558 Cartesian product of input iterables. 565 the input's iterables are sorted, the product tuples are emitted in sorted [all …]
|
D | concurrent.futures.rst | 41 .. method:: map(func, *iterables, timeout=None, chunksize=1) 43 Similar to :func:`map(func, *iterables) <map>` except: 45 * the *iterables* are collected immediately rather than lazily; 59 When using :class:`ProcessPoolExecutor`, this method chops *iterables* 62 setting *chunksize* to a positive integer. For very long iterables,
|
D | heapq.rst | 86 .. function:: merge(*iterables, key=None, reverse=False) 92 Similar to ``sorted(itertools.chain(*iterables))`` but returns an iterable, does 104 to ``sorted(itertools.chain(*iterables), reverse=True)``, all iterables must
|
D | select.rst | 120 The first three arguments are iterables of 'waitable objects': either 129 Empty iterables are allowed, but acceptance of three empty iterables is 144 Among the acceptable object types in the iterables are Python :term:`file
|
D | functions.rst | 987 iterables in parallel. With multiple iterables, the iterator stops when the 1683 see :func:`math.fsum`\. To concatenate a series of iterables, consider using 1825 .. function:: zip(*iterables, strict=False) 1827 Iterate over several iterables in parallel, producing tuples with an item 1840 tuple contains the *i*-th element from each of the argument iterables. 1850 One thing to consider is that the iterables passed to :func:`zip` could have 1852 the code that prepared these iterables. Python offers three different 1856 It will ignore the remaining items in the longer iterables, cutting off 1862 * :func:`zip` is often used in cases where the iterables are assumed to be 1869 Unlike the default behavior, it checks that the lengths of iterables are [all …]
|
D | graphlib.rst | 33 are iterables of all predecessors of that node in the graph (the nodes that
|
/third_party/python/Lib/ |
D | heapq.py | 314 def merge(*iterables, key=None, reverse=False): argument 347 for order, it in enumerate(map(iter, iterables)): 370 for order, it in enumerate(map(iter, iterables)):
|
/third_party/python/Misc/NEWS.d/ |
D | 3.6.3.rst | 7 Re-allow arbitrary iterables in `concurrent.futures.as_completed()`. Fixes
|
D | 3.6.0a4.rst | 7 Optimized creating bytes and bytearray from byte-like objects and iterables.
|
D | 3.5.0a4.rst | 526 csv.Writer.writerow() now supports arbitrary iterables.
|
/third_party/python/Lib/concurrent/futures/ |
D | process.py | 183 def _get_chunks(*iterables, chunksize): argument 185 it = zip(*iterables) 710 def map(self, fn, *iterables, timeout=None, chunksize=1): argument 735 _get_chunks(*iterables, chunksize=chunksize),
|
D | _base.py | 573 def map(self, fn, *iterables, timeout=None, chunksize=1): argument 598 fs = [self.submit(fn, *args) for args in zip(*iterables)]
|
/third_party/boost/libs/python/doc/reference/ |
D | stl_iterator.qbk | 3 …reating C++ Iterators from [@http://www.python.org/doc/current/lib/typeiter.html Python iterables].
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with enum value compiler options/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with boolean value compiler options/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with files options/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Default initialized TSConfig/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option value/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options with enum value/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/typescript/tests/baselines/reference/tsConfig/Initialized TSConfig with advanced options/ |
D | tsconfig.json | 24 …// "downlevelIteration": true, /* Provide full support for iterables in 'for-of',…
|
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/ |
D | basic_types.dart | 103 /// also applies to any iterables derived from this one, e.g. as
|
/third_party/python/Doc/howto/ |
D | functional.rst | 722 This iterator is intended to be used with iterables that are all of the same 723 length. If the iterables are of different lengths, the resulting stream will be 778 number of iterables as input, and returns all the elements of the first 780 iterables have been exhausted. :: 1020 therefore, can't be applied to infinite iterables. *func* must be a function
|