Searched refs:_repeat (Results 1 – 6 of 6) sorted by relevance
/external/tensorflow/tensorflow/python/data/kernel_tests/ |
D | interleave_test.py | 92 def _repeat(values, count): function 148 input_lists = _repeat(input_values, 2) 193 _repeat(input_values, count), cycle_length, block_length, 290 _repeat(input_values, count), cycle_length, block_length,
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
D | fix_operator.py | 58 def _repeat(self, node, results): member in FixOperator
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
D | fix_operator.py | 57 def _repeat(self, node, results): member in FixOperator
|
/external/python/cpython3/Lib/ |
D | random.py | 54 from itertools import accumulate as _accumulate, repeat as _repeat unknown 486 return [population[floor(random() * n)] for i in _repeat(None, k)] 498 for i in _repeat(None, k)]
|
/external/python/cpython2/Lib/ |
D | collections.py | 25 from itertools import repeat as _repeat, chain as _chain, starmap as _starmap unknown 517 return _chain.from_iterable(_starmap(_repeat, self.iteritems()))
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 34 from itertools import repeat as _repeat unknown 633 return _chain.from_iterable(_starmap(_repeat, self.items()))
|