Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 472 for verb (0.06 sec)

  1. src/fmt/doc.go

    description of the problem, as in these examples:
    
    	Wrong type or unknown verb: %!verb(type=value)
    		Printf("%d", "hi"):        %!d(string=hi)
    	Too many arguments: %!(EXTRA type=value)
    		Printf("hi", "guys"):      hi%!(EXTRA string=guys)
    	Too few arguments: %!verb(MISSING)
    		Printf("hi%d"):            hi%!d(MISSING)
    	Non-int for width or precision: %!(BADWIDTH) or %!(BADPREC)
    		Printf("%*s", 4.5, "hi"):  %!(BADWIDTH)hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authorization/v1beta1/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: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="450000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="550000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="650000"} 1
            apiserver_request_body_size_bytes_bucket{resource="resource.group",verb="create",le="750000"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    				},
    			},
    			requestInfo: &request.RequestInfo{
    				Verb:              "list",
    				APIGroup:          "",
    				APIVersion:        "v1",
    				Resource:          "pods",
    				IsResourceRequest: true,
    			},
    			isMutating: false,
    			want: `
    			            # HELP apiserver_request_total [STABLE] Counter of apiserver requests broken out for each verb, dry run value, group, version, resource, scope, component, and HTTP response code.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/node/node_authorizer.go

    func (r *NodeAuthorizer) authorizeLease(nodeName string, attrs authorizer.Attributes) (authorizer.Decision, string, error) {
    	// allowed verbs: get, create, update, patch, delete
    	verb := attrs.GetVerb()
    	switch verb {
    	case "get", "create", "update", "patch", "delete":
    		//ok
    	default:
    		klog.V(2).Infof("NODE DENY: '%s' %#v", nodeName, attrs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top