Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,201 for verb (0.05 sec)

  1. common-protos/k8s.io/api/authorization/v1/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)
  2. staging/src/k8s.io/api/authorization/v1beta1/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)
  3. staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go

    }
    
    func (a AttributesRecord) GetUser() user.Info {
    	return a.User
    }
    
    func (a AttributesRecord) GetVerb() string {
    	return a.Verb
    }
    
    func (a AttributesRecord) IsReadOnly() bool {
    	return a.Verb == "get" || a.Verb == "list" || a.Verb == "watch"
    }
    
    func (a AttributesRecord) GetNamespace() string {
    	return a.Namespace
    }
    
    func (a AttributesRecord) GetResource() string {
    	return a.Resource
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 14:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    			})
    			route.Metadata(RouteMetaAction, strings.ToLower(action.Verb))
    			ws.Route(route)
    		}
    		// Note: update GetAuthorizerAttributes() when adding a custom handler.
    	}
    
    	apiResource.Verbs = make([]string, 0, len(kubeVerbs))
    	for kubeVerb := range kubeVerbs {
    		apiResource.Verbs = append(apiResource.Verbs, kubeVerb)
    	}
    	sort.Strings(apiResource.Verbs)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/authorization/v1/types.go

    	// +optional
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,1,opt,name=namespace"`
    	// Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy.  "*" means all.
    	// +optional
    	Verb string `json:"verb,omitempty" protobuf:"bytes,2,opt,name=verb"`
    	// Group is the API Group of the Resource.  "*" means all.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/BinaryTasksCollectionWrapper.java

            return (BinaryTasksCollection) super.getDelegate();
        }
    
        @Override
        public String taskName(String verb) {
            return getDelegate().taskName(verb);
        }
    
        @Override
        public String taskName(String verb, String object) {
            return getDelegate().taskName(verb, object);
        }
    
        @Override
        public Task getBuild() {
            return getDelegate().getBuild();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. cluster/gce/gci/audit_policy_test.go

    		}
    	}
    	require.NotEmpty(t, verbs, "testcases must have a verb")
    	require.NotEmpty(t, users, "testcases must have a user")
    	require.NotEmpty(t, resources, "resource testcases must have a resource")
    
    	for _, usr := range users {
    		for _, verb := range verbs {
    			for _, res := range resources {
    				attrs := &authorizer.AttributesRecord{
    					User:            usr,
    					Verb:            verb,
    					Namespace:       res.Namespace,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    type printVerb struct {
    	verb  rune   // User may provide verb through Formatter; could be a rune.
    	flags string // known flags are all ASCII
    	typ   printfArgType
    }
    
    // Common flag sets for printf verbs.
    const (
    	noFlag       = ""
    	numFlag      = " -+.0"
    	sharpNumFlag = " -+.0#"
    	allFlags     = " -+.0#"
    )
    
    // printVerbs identifies which flags are known to printf for each verb.
    var printVerbs = []printVerb{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. 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)
  10. src/fmt/errors.go

    //
    // If the format specifier includes a %w verb with an error operand,
    // the returned error will implement an Unwrap method returning the operand.
    // If there is more than one %w verb, the returned error will implement an
    // Unwrap method returning a []error containing all the %w operands in the
    // order they appear in the arguments.
    // It is invalid to supply the %w verb with an operand that does not implement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top