Home
last modified time | relevance | path

Searched refs:_repeat (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/python/data/kernel_tests/
Dinterleave_test.py92 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/
Dfix_operator.py58 def _repeat(self, node, results): member in FixOperator
/external/python/cpython3/Lib/
Drandom.py54 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/lib2to3/fixes/
Dfix_operator.py57 def _repeat(self, node, results): member in FixOperator
/external/python/cpython2/Lib/
Dcollections.py25 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__.py34 from itertools import repeat as _repeat unknown
633 return _chain.from_iterable(_starmap(_repeat, self.items()))