MCPcopy Index your code
hub / github.com/nodejs/node / format_line

Function format_line

deps/v8/tools/avg.py:87–96  ·  view source on GitHub ↗
(points, key, average, stddev, min_value, max_value,
                unit_string, widths)

Source from the content-addressed store, hash-verified

85
86
87def format_line(points, key, average, stddev, min_value, max_value,
88 unit_string, widths):
89 return "{:>{}}; {:<{}}; {:>{}}; {:>{}}; {:>{}}; {:>{}}; {}".format(
90 points, widths.points,
91 key, widths.key,
92 average, widths.average,
93 stddev, widths.stddev,
94 min_value, widths.min,
95 max_value, widths.max,
96 unit_string)
97
98
99def fmt_reps(msrmnt):

Callers 2

resultMethod · 0.85
result_headerFunction · 0.85

Calls 1

formatMethod · 0.65

Tested by

no test coverage detected