Searched refs:column_widths (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/debug/cli/ |
D | profile_analyzer_cli.py | 518 column_widths = [ 521 column_widths[col] = max(column_widths[col], len(device_total_row[col])) 522 for col in range(len(column_widths)): 524 column_widths[col] = max( 525 column_widths[col], len(profile_data.value( 531 column_widths[col] += 2 # add margin between columns 551 row += RL(" " * (column_widths[col] - len(column_name))) 566 new_row += RL(" " * (column_widths[col] - len(new_cell))) 571 for width, row in zip(column_widths, device_total_row): 654 column_widths = { [all …]
|
/external/pigweed/pw_bloat/py/pw_bloat/ |
D | bloat_output.py | 103 column_widths = [len(field) for field in FormattedDiff._fields] 110 column_widths[i] = max(column_widths[i], len(val)) 112 separators = self._row_separators([max_label] + column_widths) 119 self._center_align(val.capitalize(), column_widths[i]) 148 self._justify)(column_widths[i], ' ') 162 def _row_separators(self, column_widths: List[int]) -> Dict[str, str]: 172 lines = [line * width for width in column_widths]
|
/external/autotest/server/site_tests/enterprise_LongevityTrackerServer/ |
D | enterprise_longevity_helper.py | 92 def get_digits(version_num, column_widths): argument 97 if column_widths[i]: 98 computed_string += version_part.zfill(column_widths[i])
|
/external/autotest/tko/perf_upload/ |
D | perf_uploader.py | 246 def get_digits_from_version(version_num, column_widths): argument 251 if column_widths[i]: 252 computed_string += version_part.zfill(column_widths[i])
|
/external/autotest/client/site_tests/longevity_Tracker/ |
D | longevity_Tracker.py | 268 def get_digits(version_num, column_widths): argument 273 if column_widths[i]: 274 computed_string += version_part.zfill(column_widths[i])
|