Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for MMU (0.06 sec)

  1. src/internal/trace/traceviewer/mmu.go

    func MMUHandlerFunc(ranges []Range, f MutatorUtilFunc) http.HandlerFunc {
    	mmu := &mmu{
    		cache:  make(map[trace.UtilFlags]*mmuCacheEntry),
    		f:      f,
    		ranges: ranges,
    	}
    	return func(w http.ResponseWriter, r *http.Request) {
    		switch r.FormValue("mode") {
    		case "plot":
    			mmu.HandlePlot(w, r)
    			return
    		case "details":
    			mmu.HandleDetails(w, r)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/internal/trace/traceviewer/http.go

    </p>
    <ul>
    <li><a href="/usertasks">User-defined tasks</a></li>
    <li><a href="/userregions">User-defined regions</a></li>
    </ul>
    
    <h2>Garbage collection metrics</h2>
    <ul>
    <li><a href="/mmu">Minimum mutator utilization</a></li>
    </ul>
    <p>
      This chart indicates the maximum GC pause time (the largest x value
      for which y is zero), and more generally, the fraction of time that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. doc/asm.html

    </p>
    
    <h3 id="x86">32-bit Intel 386</h3>
    
    <p>
    The runtime pointer to the <code>g</code> structure is maintained
    through the value of an otherwise unused (as far as Go is concerned) register in the MMU.
    In the runtime package, assembly code can include <code>go_tls.h</code>, which defines
    an OS- and architecture-dependent macro <code>get_tls</code> for accessing this register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
Back to top