Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for approxInvCumulativeSum (0.41 sec)

  1. src/internal/trace/gc.go

    		if acc.lastTime != math.MaxInt64 {
    			// Update distribution.
    			acc.mud.add(acc.lastMU, mu, float64(time-acc.lastTime))
    		}
    		acc.lastTime, acc.lastMU = time, mu
    		if _, mudBound, ok := acc.mud.approxInvCumulativeSum(); ok {
    			acc.bound = math.Max(acc.bound, mudBound)
    		} else {
    			// We haven't accumulated enough total precise
    			// mass yet to even reach our goal, so keep
    			// accumulating.
    			acc.bound = 1
    		}
    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