Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for warnNoMatches (0.14 sec)

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

    	warnNoMatches(focus == nil || fm, "Focus", ui)
    	warnNoMatches(ignore == nil || im, "Ignore", ui)
    	warnNoMatches(hide == nil || hm, "Hide", ui)
    	warnNoMatches(show == nil || hnm, "Show", ui)
    
    	sfm := prof.ShowFrom(showfrom)
    	warnNoMatches(showfrom == nil || sfm, "ShowFrom", ui)
    
    	tfm, tim := prof.FilterSamplesByTag(tagfocus, tagignore)
    	warnNoMatches(tagfocus == nil || tfm, "TagFocus", ui)
    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/driver.go

    	tagLeafLabelKeys := dropEmptyStrings(strings.Split(cfg.TagLeaf, ","))
    	rootm, leafm := addLabelNodes(prof, tagRootLabelKeys, tagLeafLabelKeys, cfg.Unit)
    	warnNoMatches(cfg.TagRoot == "" || rootm, "TagRoot", ui)
    	warnNoMatches(cfg.TagLeaf == "" || leafm, "TagLeaf", ui)
    }
    
    // dropEmptyStrings filters a slice to only non-empty strings
    func dropEmptyStrings(in []string) (out []string) {
    	for _, s := range in {
    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