Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TagShow (0.15 sec)

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

    	warnNoMatches(tagfocus == nil || tfm, "TagFocus", ui)
    	warnNoMatches(tagignore == nil || tim, "TagIgnore", ui)
    
    	tagshow, err := compileRegexOption("tagshow", cfg.TagShow, err)
    	taghide, err := compileRegexOption("taghide", cfg.TagHide, err)
    	tns, tnh := prof.FilterTagsByName(tagshow, taghide)
    	warnNoMatches(tagshow == nil || tns, "TagShow", ui)
    	warnNoMatches(taghide == nil || tnh, "TagHide", ui)
    
    	if prunefrom != nil {
    		prof.PruneFrom(prunefrom)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    	Show         string  `json:"show,omitempty"`
    	ShowFrom     string  `json:"show_from,omitempty"`
    	TagFocus     string  `json:"tagfocus,omitempty"`
    	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
    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

    	addFilter("hide", cfg.Hide)
    	addFilter("show", cfg.Show)
    	addFilter("show_from", cfg.ShowFrom)
    	addFilter("tagfocus", cfg.TagFocus)
    	addFilter("tagignore", cfg.TagIgnore)
    	addFilter("tagshow", cfg.TagShow)
    	addFilter("taghide", cfg.TagHide)
    
    	ropt := &report.Options{
    		CumSort:      cfg.Sort == "cum",
    		CallTree:     cfg.CallTree,
    		DropNegative: cfg.DropNegative,
    
    		CompactLabels: cfg.CompactLabels,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"Use name=value syntax to limit the matching to a specific tag.",
    		"Numeric tag filter examples: 1kb, 1kb:10kb, memory=32mb:",
    		"String tag filter examples: foo, foo.*bar, mytag=foo.*bar"),
    	"tagshow": helpText(
    		"Only consider tags matching this regexp",
    		"Discard tags that do not match this regexp"),
    	"taghide": helpText(
    		"Skip tags matching this regexp",
    		"Discard tags that match this regexp"),
    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