Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PruneFrom (0.2 sec)

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

    	tns, tnh := prof.FilterTagsByName(tagshow, taghide)
    	warnNoMatches(tagshow == nil || tns, "TagShow", ui)
    	warnNoMatches(taghide == nil || tnh, "TagHide", ui)
    
    	if prunefrom != nil {
    		prof.PruneFrom(prunefrom)
    	}
    	return err
    }
    
    func compileRegexOption(name, value string, err error) (*regexp.Regexp, error) {
    	if value == "" || err != nil {
    		return nil, err
    	}
    	rx, err := regexp.Compile(value)
    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/profile/prune.go

    		}
    		p.Prune(drop, keep)
    	}
    	return nil
    }
    
    // PruneFrom removes all nodes beneath the lowest node matching dropRx, not including itself.
    //
    // Please see the example below to understand this method as well as
    // the difference from Prune method.
    //
    // A sample contains Location of [A,B,C,B,D] where D is the top frame and there's no inline.
    //
    // PruneFrom(A) returns [A,B,C,B,D] because there's no node beneath A.
    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/config.go

    	EdgeFraction float64 `json:"edgefraction,omitempty"`
    	Trim         bool    `json:"trim,omitempty"`
    	Focus        string  `json:"focus,omitempty"`
    	Ignore       string  `json:"ignore,omitempty"`
    	PruneFrom    string  `json:"prune_from,omitempty"`
    	Hide         string  `json:"hide,omitempty"`
    	Show         string  `json:"show,omitempty"`
    	ShowFrom     string  `json:"show_from,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top