Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FilterSamplesByTag (0.19 sec)

  1. src/internal/profile/filter.go

    package profile
    
    // TagMatch selects tags for filtering
    type TagMatch func(key, val string, nval int64) bool
    
    // FilterSamplesByTag removes all samples from the profile, except
    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    			}
    		}
    	}
    	return f
    }
    
    // TagMatch selects tags for filtering
    type TagMatch func(s *Sample) bool
    
    // FilterSamplesByTag removes all samples from the profile, except
    // those that match focus and do not match the ignore regular
    // expression.
    func (p *Profile) FilterSamplesByTag(focus, ignore TagMatch) (fm, im bool) {
    	samples := make([]*Sample, 0, len(p.Sample))
    	for _, s := range p.Sample {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    	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)
    	warnNoMatches(tagignore == nil || tim, "TagIgnore", ui)
    
    	tagshow, err := compileRegexOption("tagshow", cfg.TagShow, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
Back to top