Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 178 for verb2 (0.09 sec)

  1. staging/src/k8s.io/api/flowcontrol/v1/types.go

    // of namespaces matches the request's namespace.
    type ResourcePolicyRule struct {
    	// `verbs` is a list of matching verbs and may not be empty.
    	// "*" matches all verbs and, if present, must be the only entry.
    	// +listType=set
    	// Required.
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// `apiGroups` is a list of matching API groups and may not be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    // of namespaces matches the request's namespace.
    type ResourcePolicyRule struct {
    	// `verbs` is a list of matching verbs and may not be empty.
    	// "*" matches all verbs and, if present, must be the only entry.
    	// +listType=set
    	// Required.
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    	// `apiGroups` is a list of matching API groups and may not be empty.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo_test.go

    		}
    		if !apiRequestInfo.IsResourceRequest {
    			t.Errorf("Expected resource request")
    		}
    		if successCase.expectedVerb != apiRequestInfo.Verb {
    			t.Errorf("Unexpected verb for url: %s, expected: %s, actual: %s", successCase.url, successCase.expectedVerb, apiRequestInfo.Verb)
    		}
    		if successCase.expectedAPIVersion != apiRequestInfo.APIVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 15 12:19:21 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // An empty list implies every user group.
      // +optional
      // +listType=atomic
      repeated string userGroups = 3;
    
      // The verbs that match this rule.
      // An empty list implies every verb.
      // +optional
      // +listType=atomic
      repeated string verbs = 4;
    
      // Resources that this rule matches. An empty list implies all kinds in all API groups.
      // +optional
      // +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	UserGroups []string
    
    	// The verbs that match this rule.
    	// An empty list implies every verb.
    	// +optional
    	Verbs []string
    
    	// Rules can apply to API resources (such as "pods" or "secrets"),
    	// non-resource URL paths (such as "/api"), or neither, but not both.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.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. src/fmt/example_test.go

    // subsequent arguments. For example, %d (we call that a 'verb') says to print the
    // corresponding argument, which must be an integer (or something containing an
    // integer, such as a slice of ints) in decimal. The verb %v ('v' for 'value')
    // always formats the argument in its default form, just how Print or Println would
    // show it. The special verb %T ('T' for 'Type') prints the type of the argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 21:03:10 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

        - serviceaccounts
        verbs:
        - create
      - apiGroups:
        - ""
        resources:
        - secrets
        verbs:
        - delete
      - apiGroups:
        - ""
        resources:
        - configmaps
        - namespaces
        - secrets
        - serviceaccounts
        verbs:
        - get
      - apiGroups:
        - ""
        resources:
        - secrets
        - serviceaccounts
        verbs:
        - update
      - apiGroups:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
Back to top