Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ruleData (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    }
    
    func matchPolicyRuleNonResourceURL(policyRuleRequestURLs []string, requestPath string) bool {
    	for _, rulePath := range policyRuleRequestURLs {
    		if rulePath == flowcontrol.NonResourceAll || rulePath == requestPath {
    			return true
    		}
    		rulePrefix := strings.TrimSuffix(rulePath, "*")
    		if !strings.HasSuffix(rulePrefix, "/") {
    			rulePrefix = rulePrefix + "/"
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top