Searched refs:start_included (Results 1 – 2 of 2) sorted by relevance
/external/tensorflow/tensorflow/python/debug/cli/ |
D | command_parser.py | 36 def __init__(self, start, start_included, end, end_included): argument 38 self.start_included = start_included 43 if value < self.start or value == self.start and not self.start_included: 51 self.start_included == other.start_included and 310 return Interval(interval_start, str_interval.start_included, 339 return Interval(interval_start, str_interval.start_included, 362 return Interval(start=None, start_included=False, 368 return Interval(start=None, start_included=False, 374 return Interval(start=interval_str[2:].strip(), start_included=True, 380 return Interval(start=interval_str[1:].strip(), start_included=False, [all …]
|
D | command_parser_test.py | 500 start=1, start_included=True, end=10, end_included=True) 505 interval.start_included = False 513 interval.start_included = True
|