Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for addUtil (0.45 sec)

  1. src/internal/trace/gc.go

    			// Record the utilization change. (Since
    			// len(ps) == len(out), we know len(out) > 0.)
    			out[0] = addUtil(out[0], mu)
    		} else {
    			// Check for per-P utilization changes.
    			for i := range ps {
    				p := &ps[i]
    				util := 1.0
    				if stw > 0 || p.gc > 0 {
    					util = 0.0
    				}
    				out[p.series] = addUtil(out[p.series], MutatorUtil{int64(ev.Time()), util})
    			}
    		}
    	}
    
    	// No events in the stream.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top