Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 171 for verb2 (0.09 sec)

  1. pkg/apis/authorization/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *NonResourceRule) DeepCopyInto(out *NonResourceRule) {
    	*out = *in
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.NonResourceURLs != nil {
    		in, out := &in.NonResourceURLs, &out.NonResourceURLs
    		*out = make([]string, len(*in))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 11.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1/types.go

    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    	Resources: []apidiscoveryv2.APIResourceDiscovery{
    		{
    			Resource:         "coolfoos",
    			Scope:            apidiscoveryv2.ScopeCluster,
    			SingularResource: "coolfoo",
    			Verbs:            []string{"delete", "deletecollection", "get", "list", "patch", "create", "update", "watch"},
    			ShortNames:       []string{"foo"},
    			Categories:       []string{"cool"},
    			ResponseKind: &metav1.GroupVersionKind{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/go/types/instantiate.go

    		return true // avoid follow-on errors
    	}
    	if p, _ := Vu.(*Pointer); p != nil && !isValid(under(p.base)) {
    		return true // avoid follow-on errors (see go.dev/issue/49541 for an example)
    	}
    
    	verb := "implement"
    	if constraint {
    		verb = "satisfy"
    	}
    
    	Ti, _ := Tu.(*Interface)
    	if Ti == nil {
    		if cause != nil {
    			var detail string
    			if isInterfacePtr(Tu) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    	return subjects
    }
    
    func resourceRule(verbs []string, groups []string, resources []string, namespaces []string, clusterScoped bool) flowcontrol.ResourcePolicyRule {
    	return flowcontrol.ResourcePolicyRule{
    		Verbs:        verbs,
    		APIGroups:    groups,
    		Resources:    resources,
    		Namespaces:   namespaces,
    		ClusterScope: clusterScoped,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1alpha1/types.go

    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/instantiate.go

    		return true // avoid follow-on errors
    	}
    	if p, _ := Vu.(*Pointer); p != nil && !isValid(under(p.base)) {
    		return true // avoid follow-on errors (see go.dev/issue/49541 for an example)
    	}
    
    	verb := "implement"
    	if constraint {
    		verb = "satisfy"
    	}
    
    	Ti, _ := Tu.(*Interface)
    	if Ti == nil {
    		if cause != nil {
    			var detail string
    			if isInterfacePtr(Tu) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				Namespace:       "default",
    				Name:            "endpoints1",
    				Verb:            "custom-verb",
    				APIVersion:      "*",
    			}),
    		},
    		{
    			name: "test subresource request resource authorizer allow check",
    			validations: []ExpressionAccessor{
    				&condition{
    					Expression: "authorizer.requestResource.check('custom-verb').allowed()",
    				},
    			},
    			attributes: endpointStatusUpdateAttributes(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            expect:
            def namingScheme = createNamingScheme(parentName, type, dimensions)
            namingScheme.getTaskName(verb, target) == taskName
    
            where:
            parentName | type   | dimensions     | verb       | target    | taskName
            null       | "type" | []             | null       | null      | "type"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/noder/noder.go

    	default:
    		verb := text
    		if i := strings.Index(text, " "); i >= 0 {
    			verb = verb[:i]
    		}
    		flag := pragmaFlag(verb)
    		const runtimePragmas = ir.Systemstack | ir.Nowritebarrier | ir.Nowritebarrierrec | ir.Yeswritebarrierrec
    		if !base.Flag.CompilingRuntime && flag&runtimePragmas != 0 {
    			p.error(syntax.Error{Pos: pos, Msg: fmt.Sprintf("//%s only allowed in runtime", verb)})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top