Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for focusOrIgnore (0.12 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/filter.go

    		fm = true // Missing focus implies a match
    		return
    	}
    	focusOrIgnore := make(map[uint64]bool)
    	hidden := make(map[uint64]bool)
    	for _, l := range p.Location {
    		if ignore != nil && l.matchesName(ignore) {
    			im = true
    			focusOrIgnore[l.ID] = false
    		} else if focus == nil || l.matchesName(focus) {
    			fm = true
    			focusOrIgnore[l.ID] = true
    		}
    
    		if hide != nil && l.matchesName(hide) {
    			hm = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
Back to top