Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for rfx (0.01 sec)

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

    			}
    			return false
    		}, nil
    	}
    
    	var rfx []*regexp.Regexp
    	for _, tagf := range strings.Split(value, ",") {
    		fx, err := regexp.Compile(tagf)
    		if err != nil {
    			return nil, fmt.Errorf("parsing %s regexp: %v", name, err)
    		}
    		rfx = append(rfx, fx)
    	}
    	if wantKey == "" {
    		return func(s *profile.Sample) bool {
    		matchedrx:
    			for _, rx := range rfx {
    				for key, vals := range s.Label {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
Back to top