Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 171 for verb2 (0.12 sec)

  1. samples/security/spire/spire-quickstart.yaml

    rules:
      - apiGroups: [""]
        resources: ["namespaces"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["admissionregistration.k8s.io"]
        resources: ["validatingwebhookconfigurations"]
        verbs: ["get", "list", "patch", "watch"]
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["pods"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["spire.spiffe.io"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	}
    
    	var directive string
    	if e.ModPath != "" {
    		directive = fmt.Sprintf("%s %s: ", e.Verb, e.ModPath)
    	} else if e.Verb != "" {
    		directive = fmt.Sprintf("%s: ", e.Verb)
    	}
    
    	return pos + directive + e.Err.Error()
    }
    
    func (e *Error) Unwrap() error { return e.Err }
    
    func parseVersion(verb string, path string, s *string, fix VersionFixer) (string, error) {
    	t, err := parseString(s)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apidiscovery/v2/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ShortNames[iNdEx])))
    			i--
    			dAtA[i] = 0x32
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	i -= len(m.SingularResource)
    	copy(dAtA[i:], m.SingularResource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ShortNames[iNdEx])))
    			i--
    			dAtA[i] = 0x32
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    			copy(dAtA[i:], m.Verbs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Verbs[iNdEx])))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	i -= len(m.SingularResource)
    	copy(dAtA[i:], m.SingularResource)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/provision_test.go

    				// Inject error to five kubeclient.PersistentVolumes.Create()
    				// calls
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error1")},
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error2")},
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error3")},
    				{Verb: "create", Resource: "persistentvolumes", Error: errors.New("Mock creation error4")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. pkg/apis/rbac/validation/validation_test.go

    		role: rbac.ClusterRole{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "default",
    			},
    			Rules: []rbac.PolicyRule{{
    				Verbs:           []string{},
    				NonResourceURLs: []string{"/*"},
    			}},
    		},
    		wantErr: true,
    		errType: field.ErrorTypeRequired,
    		field:   "rules[0].verbs",
    	}.test(t)
    }
    
    func TestValidateRoleMixedNonResourceAndResource(t *testing.T) {
    	ValidateRoleTest{
    		role: rbac.Role{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// ProducesMIMETypes returns a list of the MIME types the specified HTTP verb (GET, POST, DELETE,
    	// PATCH) can respond with.
    	ProducesMIMETypes(verb string) []string
    
    	// ProducesObject returns an object the specified HTTP verb respond with. It will overwrite storage object if
    	// it is not nil. Only the type of the return object matters, the value will be ignored.
    	ProducesObject(verb string) interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_pod_control.go

    		message := fmt.Sprintf("%s Pod %s in StatefulSet %s successful",
    			strings.ToLower(verb), pod.Name, set.Name)
    		spc.recorder.Event(set, v1.EventTypeNormal, reason, message)
    	} else {
    		reason := fmt.Sprintf("Failed%s", strings.Title(verb))
    		message := fmt.Sprintf("%s Pod %s in StatefulSet %s failed error: %s",
    			strings.ToLower(verb), pod.Name, set.Name, err)
    		spc.recorder.Event(set, v1.EventTypeWarning, reason, message)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authorization/v1/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)
  10. staging/src/k8s.io/api/authorization/v1beta1/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)
Back to top