Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RemoveUninteresting (0.32 sec)

  1. src/internal/profile/prune.go

    				break
    			}
    			if pruneBeneath[id] {
    				sample.Location = sample.Location[i:]
    				break
    			}
    		}
    	}
    }
    
    // RemoveUninteresting prunes and elides profiles using built-in
    // tables of uninteresting function names.
    func (p *Profile) RemoveUninteresting() error {
    	var keep, drop *regexp.Regexp
    	var err error
    
    	if p.DropFrames != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    				break
    			}
    			if pruneBeneath[id] {
    				sample.Location = sample.Location[i:]
    				break
    			}
    		}
    	}
    }
    
    // RemoveUninteresting prunes and elides profiles using built-in
    // tables of uninteresting function names.
    func (p *Profile) RemoveUninteresting() error {
    	var keep, drop *regexp.Regexp
    	var err error
    
    	if p.DropFrames != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top