Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    	if !matchPolicyRuleVerb(policyRule.Verbs, ri.Verb) {
    		return false
    	}
    	return matchPolicyRuleNonResourceURL(policyRule.NonResourceURLs, ri.Path)
    }
    
    func matchPolicyRuleVerb(policyRuleVerbs []string, requestVerb string) bool {
    	return containsString(requestVerb, policyRuleVerbs, flowcontrol.VerbAll)
    }
    
    func matchPolicyRuleNonResourceURL(policyRuleRequestURLs []string, requestPath string) bool {
    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