mirror of
https://github.com/golang/go
synced 2024-11-23 22:40:04 -07:00
cmd/trace: use strings.Builder
Change-Id: I690dc517c08be4cd66439baad8b91f16622ff0d2 Reviewed-on: https://go-review.googlesource.com/c/go/+/428292 Reviewed-by: Michael Pratt <mpratt@google.com> Run-TryBot: Michael Pratt <mpratt@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> Reviewed-by: Michael Knyszek <mknyszek@google.com> TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
parent
c263fa07b1
commit
e5ed2212a3
@ -370,7 +370,7 @@ func (task *taskDesc) String() string {
|
||||
if task == nil {
|
||||
return "task <nil>"
|
||||
}
|
||||
wb := new(bytes.Buffer)
|
||||
wb := new(strings.Builder)
|
||||
fmt.Fprintf(wb, "task %d:\t%s\n", task.id, task.name)
|
||||
fmt.Fprintf(wb, "\tstart: %v end: %v complete: %t\n", task.firstTimestamp(), task.endTimestamp(), task.complete())
|
||||
fmt.Fprintf(wb, "\t%d goroutines\n", len(task.goroutines))
|
||||
@ -872,7 +872,7 @@ func (h *durationHistogram) ToHTML(urlmaker func(min, max time.Duration) string)
|
||||
}
|
||||
}
|
||||
|
||||
w := new(bytes.Buffer)
|
||||
w := new(strings.Builder)
|
||||
fmt.Fprintf(w, `<table>`)
|
||||
for i := h.MinBucket; i <= h.MaxBucket; i++ {
|
||||
// Tick label.
|
||||
@ -914,7 +914,7 @@ func (h *durationHistogram) String() string {
|
||||
}
|
||||
}
|
||||
|
||||
w := new(bytes.Buffer)
|
||||
w := new(strings.Builder)
|
||||
for i := h.MinBucket; i <= h.MaxBucket; i++ {
|
||||
count := h.Buckets[i]
|
||||
bar := count * barWidth / maxCount
|
||||
|
Loading…
Reference in New Issue
Block a user