Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	if o.OutputUnit != "minimum" || len(g.Nodes) == 0 {
    		return
    	}
    	var minValue int64
    
    	for _, n := range g.Nodes {
    		nodeMin := abs64(n.FlatValue())
    		if nodeMin == 0 {
    			nodeMin = abs64(n.CumValue())
    		}
    		if nodeMin > 0 && (minValue == 0 || nodeMin < minValue) {
    			minValue = nodeMin
    		}
    	}
    	maxValue := rpt.total
    	if minValue == 0 {
    		minValue = maxValue
    	}
    
    	if r := o.Ratio; r > 0 && r != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
Back to top