Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 710 for apiGroup (0.17 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.yaml

    apiVersion: v1
    kind: APIGroup
    name: nameValue
    preferredVersion:
      groupVersion: groupVersionValue
      version: versionValue
    serverAddressByClientCIDRs:
    - clientCIDR: clientCIDRValue
      serverAddress: serverAddressValue
    versions:
    - groupVersion: groupVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 284 bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 411 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 411 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.APIGroup.yaml

    apiVersion: v1
    kind: APIGroup
    name: nameValue
    preferredVersion:
      groupVersion: groupVersionValue
      version: versionValue
    serverAddressByClientCIDRs:
    - clientCIDR: clientCIDRValue
      serverAddress: serverAddressValue
    versions:
    - groupVersion: groupVersionValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 284 bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.APIGroup.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 146 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.APIGroup.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 146 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/root.go

    		addresses:  addresses,
    		serializer: serializer,
    		apiGroups:  map[string]metav1.APIGroup{},
    	}
    }
    
    func (s *rootAPIsHandler) AddGroup(apiGroup metav1.APIGroup) {
    	s.lock.Lock()
    	defer s.lock.Unlock()
    
    	_, alreadyExists := s.apiGroups[apiGroup.Name]
    
    	s.apiGroups[apiGroup.Name] = apiGroup
    	if !alreadyExists {
    		s.apiGroupNames = append(s.apiGroupNames, apiGroup.Name)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 22:44:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. pkg/apis/rbac/validation/validation_test.go

    			ObjectMeta: metav1.ObjectMeta{Name: "master"},
    			RoleRef:    rbac.RoleRef{APIGroup: rbac.GroupName, Kind: "ClusterRole", Name: "valid"},
    			Subjects: []rbac.Subject{
    				{Name: "validsaname", APIGroup: "", Namespace: "foo", Kind: rbac.ServiceAccountKind},
    				{Name: "valid@username", APIGroup: rbac.GroupName, Kind: rbac.UserKind},
    				{Name: "valid@groupname", APIGroup: rbac.GroupName, Kind: rbac.GroupKind},
    			},
    		},
    	)
    	if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. pkg/apis/rbac/validation/validation.go

    		if subject.APIGroup != rbac.GroupName {
    			allErrs = append(allErrs, field.NotSupported(fldPath.Child("apiGroup"), subject.APIGroup, []string{rbac.GroupName}))
    		}
    
    	case rbac.GroupKind:
    		// TODO(ericchiang): What other restrictions on group name are there?
    		if subject.APIGroup != rbac.GroupName {
    			allErrs = append(allErrs, field.NotSupported(fldPath.Child("apiGroup"), subject.APIGroup, []string{rbac.GroupName}))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    			counts: map[string]int64{
    				"events.foo.bar": 399,
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 8,
    		},
    		{
    			name:       "request verb is list, no query parameters, count not known",
    			requestURI: "http://server/apis/foo.bar/v1/events",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "list",
    				APIGroup: "foo.bar",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top