Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for groupsByName (0.13 sec)

  1. src/cmd/trace/goroutines.go

    		}
    		// Accumulate groups by Name.
    		groupsByName := make(map[string]goroutineGroup)
    		for _, summary := range summaries {
    			group := groupsByName[summary.Name]
    			group.Name = summary.Name
    			group.N++
    			group.ExecTime += summary.ExecTime
    			groupsByName[summary.Name] = group
    		}
    		var groups []goroutineGroup
    		for _, group := range groupsByName {
    			groups = append(groups, group)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top