Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 471 for vers (0.04 sec)

  1. pkg/apis/rbac/helpers_test.go

    	role := &rbac.Role{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    	clusterRole := &rbac.ClusterRole{
    		Rules: []rbac.PolicyRule{
    			rbac.NewRule("verb").Groups("g").Resources("foo").RuleOrDie(),
    			rbac.NewRule("verb").URLs("/foo").RuleOrDie(),
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    			return true
    		}
    	}
    	return false
    }
    
    func matchesResourcePolicyRule(ri *request.RequestInfo, policyRule flowcontrol.ResourcePolicyRule) bool {
    	if !matchPolicyRuleVerb(policyRule.Verbs, ri.Verb) {
    		return false
    	}
    	if !matchPolicyRuleResource(policyRule.Resources, ri.Resource, ri.Subresource) {
    		return false
    	}
    	if !matchPolicyRuleAPIGroup(policyRule.APIGroups, ri.APIGroup) {
    		return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go

    func GetOperationIDAndTags(r *restful.Route) (string, []string, error) {
    	op := r.Operation
    	path := r.Path
    	var tags []string
    	prefix, exists := verbs.GetPrefix(op)
    	if !exists {
    		return op, tags, fmt.Errorf("operation names should start with a verb. Cannot determine operation verb from %v", op)
    	}
    	op = op[len(prefix):]
    	parts := strings.Split(strings.Trim(path, "/"), "/")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 09 18:11:41 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    	for i := range semanticRoles.edit.Rules {
    		rule := semanticRoles.edit.Rules[i]
    		remainingVerbs := []string{}
    		for _, verb := range rule.Verbs {
    			if readVerbs.Has(verb) {
    				remainingVerbs = append(remainingVerbs, verb)
    			}
    		}
    		rule.Verbs = remainingVerbs
    		semanticRoles.edit.Rules[i] = rule
    	}
    
    	// confirm that the view role doesn't already have extra powers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy). Subresources may define
      // custom verbs outside the standard Kubernetes verb set. Clients
      // should expect the behavior of standard verbs to align with
      // Kubernetes interaction conventions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    	// but is not limited to get, list, watch, create, update, patch,
    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string `json:"verbs" protobuf:"bytes,5,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    	// but is not limited to get, list, watch, create, update, patch,
    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string `json:"verbs" protobuf:"bytes,5,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy). Subresources may define
      // custom verbs outside the standard Kubernetes verb set. Clients
      // should expect the behavior of standard verbs to align with
      // Kubernetes interaction conventions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. pkg/apis/apidiscovery/types.go

    	// +listMapKey=kind
    	AcceptedTypes []v1.GroupVersionKind
    	// verbs is a list of supported API operation types (this includes
    	// but is not limited to get, list, watch, create, update, patch,
    	// delete, deletecollection, and proxy). Subresources may define
    	// custom verbs outside the standard Kubernetes verb set. Clients
    	// should expect the behavior of standard verbs to align with
    	// Kubernetes interaction conventions.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy). Subresources may define
      // custom verbs outside the standard Kubernetes verb set. Clients
      // should expect the behavior of standard verbs to align with
      // Kubernetes interaction conventions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top