Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 472 for verb (0.04 sec)

  1. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    	"verb": "Verb is the standard HTTP verb",
    }
    
    func (NonResourceAttributes) SwaggerDoc() map[string]string {
    	return map_NonResourceAttributes
    }
    
    var map_NonResourceRule = map[string]string{
    	"":                "NonResourceRule holds information that describes a rule for the non-resource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      // +optional
      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      repeated string verbs = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authorization/v1/generated.proto

      optional string path = 1;
    
      // Verb is the standard HTTP verb
      // +optional
      optional string verb = 2;
    }
    
    // NonResourceRule holds information that describes a rule for the non-resource
    message NonResourceRule {
      // Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options.  "*" means all.
      // +listType=atomic
      repeated string verbs = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    			},
    		},
    		&core.SimpleReactor{
    			Verb:     "update",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    		},
    		&core.SimpleReactor{
    			Verb:     "delete",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    		},
    		&core.SimpleReactor{
    			Verb:     "delete-collection",
    			Resource: "*",
    			Reaction: successfulModificationReactorFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K 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. staging/src/k8s.io/api/authorization/v1beta1/types_swagger_doc_generated.go

    	"verb": "Verb is the standard HTTP verb",
    }
    
    func (NonResourceAttributes) SwaggerDoc() map[string]string {
    	return map_NonResourceAttributes
    }
    
    var map_NonResourceRule = map[string]string{
    	"":                "NonResourceRule holds information that describes a rule for the non-resource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/apis/authorization/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_NonResourceAttributes_To_authorization_NonResourceAttributes(in *v1.NonResourceAttributes, out *authorization.NonResourceAttributes, s conversion.Scope) error {
    	out.Path = in.Path
    	out.Verb = in.Verb
    	return nil
    }
    
    // Convert_v1_NonResourceAttributes_To_authorization_NonResourceAttributes is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 31.2K bytes
    - Viewed (0)
  10. 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)
Back to top