Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for WeightValue (0.32 sec)

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

    	Residual bool
    	// An inline edge represents a call that was inlined into the caller.
    	Inline bool
    }
    
    // WeightValue returns the weight value for this edge, normalizing if a
    // divisor is available.
    func (e *Edge) WeightValue() int64 {
    	if e.WeightDiv == 0 {
    		return e.Weight
    	}
    	return e.Weight / e.WeightDiv
    }
    
    // Tag represent sample annotations
    type Tag struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top