Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 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)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		if err != nil {
    			return nil, err
    		}
    	}
    
    	// Symbolize the merged profile.
    	if err := o.Sym.Symbolize(s.Symbolize, m, p); err != nil {
    		return nil, err
    	}
    	p.RemoveUninteresting()
    	unsourceMappings(p)
    
    	if s.Comment != "" {
    		p.Comments = append(p.Comments, s.Comment)
    	}
    
    	// Save a copy of the merged profile if there is at least one remote source.
    	if save {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top