Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,092 for vers (0.17 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    	for i := range semanticRoles.edit.Rules {
    		rule := semanticRoles.edit.Rules[i]
    		remainingVerbs := []string{}
    		for _, verb := range rule.Verbs {
    			if readVerbs.Has(verb) {
    				remainingVerbs = append(remainingVerbs, verb)
    			}
    		}
    		rule.Verbs = remainingVerbs
    		semanticRoles.edit.Rules[i] = rule
    	}
    
    	// confirm that the view role doesn't already have extra powers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K 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/api/apidiscovery/v2/generated.proto

      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy). Subresources may define
      // custom verbs outside the standard Kubernetes verb set. Clients
      // should expect the behavior of standard verbs to align with
      // Kubernetes interaction conventions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    	// but is not limited to get, list, watch, create, update, patch,
    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string `json:"verbs" protobuf:"bytes,5,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. 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)
  6. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	SingularResource string `json:"singularResource" protobuf:"bytes,4,opt,name=singularResource"`
    	// verbs is a list of supported API operation types (this includes
    	// but is not limited to get, list, watch, create, update, patch,
    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string `json:"verbs" protobuf:"bytes,5,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/fmt/scan.go

    	case *bool:
    		*v = s.scanBool(verb)
    	case *complex64:
    		*v = complex64(s.scanComplex(verb, 64))
    	case *complex128:
    		*v = s.scanComplex(verb, 128)
    	case *int:
    		*v = int(s.scanInt(verb, intBits))
    	case *int8:
    		*v = int8(s.scanInt(verb, 8))
    	case *int16:
    		*v = int16(s.scanInt(verb, 16))
    	case *int32:
    		*v = int32(s.scanInt(verb, 32))
    	case *int64:
    		*v = s.scanInt(verb, 64)
    	case *uint:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // verbs is a list of supported API operation types (this includes
      // but is not limited to get, list, watch, create, update, patch,
      // delete, deletecollection, and proxy). Subresources may define
      // custom verbs outside the standard Kubernetes verb set. Clients
      // should expect the behavior of standard verbs to align with
      // Kubernetes interaction conventions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.NonResourceURLs[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	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] = 0xa
    		}
    	}
    	return len(dAtA) - i, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
Back to top