Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for simpleIndex (0.79 sec)

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

    	}
    
    	si := cfg.SampleIndex
    	si = sampleIndex(flagTotalDelay, si, "delay", "-total_delay", o.UI)
    	si = sampleIndex(flagMeanDelay, si, "delay", "-mean_delay", o.UI)
    	si = sampleIndex(flagContentions, si, "contentions", "-contentions", o.UI)
    	si = sampleIndex(flagInUseSpace, si, "inuse_space", "-inuse_space", o.UI)
    	si = sampleIndex(flagInUseObjects, si, "inuse_objects", "-inuse_objects", o.UI)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    func (cfg *config) resetTransient() {
    	current := currentConfig()
    	cfg.Output = current.Output
    	cfg.SourcePath = current.SourcePath
    	cfg.TrimPath = current.TrimPath
    	cfg.DivideBy = current.DivideBy
    	cfg.SampleIndex = current.SampleIndex
    }
    
    // applyURL updates *cfg based on params.
    func (cfg *config) applyURL(params url.Values) error {
    	for _, f := range configFields {
    		var value string
    		if f.urlparam != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    // and the type/units of those values.
    func sampleFormat(p *profile.Profile, sampleIndex string, mean bool) (value, meanDiv sampleValueFunc, v *profile.ValueType, err error) {
    	if len(p.SampleType) == 0 {
    		return nil, nil, nil, fmt.Errorf("profile has no samples")
    	}
    	index, err := p.SampleIndexByName(sampleIndex)
    	if err != nil {
    		return nil, nil, nil, err
    	}
    	value = valueExtractor(index)
    	if mean {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top