Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PruneFrom (0.07 sec)

  1. 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)
  2. 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