Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for showcolumns (0.14 sec)

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

    	TagIgnore    string  `json:"tagignore,omitempty"`
    	TagShow      string  `json:"tagshow,omitempty"`
    	TagHide      string  `json:"taghide,omitempty"`
    	NoInlines    bool    `json:"noinlines,omitempty"`
    	ShowColumns  bool    `json:"showcolumns,omitempty"`
    
    	// Output granularity
    	Granularity string `json:"granularity,omitempty"`
    }
    
    // defaultConfig returns the default configuration values; it is unaffected by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    		function = true
    	case "filefunctions":
    		function = true
    		filename = true
    	default:
    		return fmt.Errorf("unexpected granularity")
    	}
    	return prof.Aggregate(inlines, function, filename, linenumber, cfg.ShowColumns, address)
    }
    
    func reportOptions(p *profile.Profile, numLabelUnits map[string]string, cfg config) (*report.Options, error) {
    	si, mean := cfg.SampleIndex, cfg.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)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Aggregate at the address level.",
    		"Includes functions' addresses in the output."),
    	"noinlines": helpText(
    		"Ignore inlines.",
    		"Attributes inlined functions to their first out-of-line caller."),
    	"showcolumns": helpText(
    		"Show column numbers at the source code line level."),
    }
    
    func helpText(s ...string) string {
    	return strings.Join(s, "\n") + "\n"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top