Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MMU (0.27 sec)

  1. src/internal/trace/gc.go

    }
    
    // MMU returns the minimum mutator utilization for the given time
    // window. This is the minimum utilization for all windows of this
    // duration across the execution. The returned value is in the range
    // [0, 1].
    func (c *MMUCurve) MMU(window time.Duration) (mmu float64) {
    	acc := accumulator{mmu: 1.0, bound: 1.0}
    	c.mmu(window, &acc)
    	return acc.mmu
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/cmd/trace/main.go

    	// Goroutines handlers.
    	mux.HandleFunc("/goroutines", GoroutinesHandlerFunc(parsed.summary.Goroutines))
    	mux.HandleFunc("/goroutine", GoroutineHandler(parsed.summary.Goroutines))
    
    	// MMU handler.
    	mux.HandleFunc("/mmu", traceviewer.MMUHandlerFunc(ranges, mutatorUtil))
    
    	// Basic pprof endpoints.
    	mux.HandleFunc("/io", traceviewer.SVGProfileHandlerFunc(pprofByGoroutine(computePprofIO(), parsed)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top