Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 609 for group_versions (0.34 sec)

  1. api/discovery/apis__flowcontrol.apiserver.k8s.io.json

      "apiVersion": "v1",
      "kind": "APIGroup",
      "name": "flowcontrol.apiserver.k8s.io",
      "preferredVersion": {
        "groupVersion": "flowcontrol.apiserver.k8s.io/v1",
        "version": "v1"
      },
      "versions": [
        {
          "groupVersion": "flowcontrol.apiserver.k8s.io/v1",
          "version": "v1"
        },
        {
          "groupVersion": "flowcontrol.apiserver.k8s.io/v1beta3",
          "version": "v1beta3"
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 22 10:54:34 UTC 2023
    - 407 bytes
    - Viewed (0)
  2. pkg/apis/policy/validation/validation_test.go

    		name                string
    		pdbStatus           policy.PodDisruptionBudgetStatus
    		expectErrForVersion map[schema.GroupVersion]bool
    	}{{
    		name: "DisruptionsAllowed: 10",
    		pdbStatus: policy.PodDisruptionBudgetStatus{
    			DisruptionsAllowed: 10,
    		},
    		expectErrForVersion: map[schema.GroupVersion]bool{
    			policy.SchemeGroupVersion:        expectNoErrors,
    			policyv1beta1.SchemeGroupVersion: expectNoErrors,
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook.go

    }
    
    func loadWebhook(configFile string, groupVersion schema.GroupVersion, retryBackoff wait.Backoff, customDial utilnet.DialFunc) (*webhook.GenericWebhook, error) {
    	clientConfig, err := webhook.LoadKubeconfig(configFile, customDial)
    	if err != nil {
    		return nil, err
    	}
    	w, err := webhook.NewGenericWebhook(audit.Scheme, audit.Codecs, clientConfig,
    		[]schema.GroupVersion{groupVersion}, retryBackoff)
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:13:31 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/componentconfigs/utils_test.go

    				"err1": &UnsupportedConfigVersionError{
    					OldVersion: schema.GroupVersion{
    						Group:   "admissionregistration.k8s.io",
    						Version: "v1beta1",
    					},
    					CurrentVersion: schema.GroupVersion{
    						Group:   "admissionregistration.k8s.io",
    						Version: "v1",
    					},
    				},
    				"err2": &UnsupportedConfigVersionError{
    					OldVersion: schema.GroupVersion{
    						Group:   "node.k8s.io",
    						Version: "v1beta1",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 13:52:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    	scheme.AddKnownTypes(schema.GroupVersion{Group: "foo", Version: "v1beta1"}, &testapigroup.Carp{})
    	scheme.AddKnownTypes(schema.GroupVersion{Group: "foo", Version: "__internal"}, &testapigroup.Carp{})
    
    	testCases := []struct {
    		name                    string
    		unstructuredToConvert   *unstructured.Unstructured
    		targetGV                schema.GroupVersion
    		expectPanic             bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    	if lhs == rhs {
    		return false
    	}
    
    	if lhs.GroupVersion() == rhs.GroupVersion() {
    		return lhs.Kind < rhs.Kind
    	}
    
    	// otherwise, the difference is in the GroupVersion, so we need to sort with respect to the preferred order
    	lhsIndex := -1
    	rhsIndex := -1
    
    	for i := range o.sortOrder {
    		if o.sortOrder[i] == lhs.GroupVersion() {
    			lhsIndex = i
    		}
    		if o.sortOrder[i] == rhs.GroupVersion() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  7. api/discovery/apis__policy.json

    {
      "apiVersion": "v1",
      "kind": "APIGroup",
      "name": "policy",
      "preferredVersion": {
        "groupVersion": "policy/v1",
        "version": "v1"
      },
      "versions": [
        {
          "groupVersion": "policy/v1",
          "version": "v1"
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 239 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/core.v1.APIGroup.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 19 15:31:53 UTC 2022
    - 411 bytes
    - Viewed (0)
  9. pkg/api/testing/conversion_test.go

    	for i := 0; i < b.N; i++ {
    		pod := &items[i%width]
    		versionedObj, err := scheme.UnsafeConvertToVersion(pod, schema.GroupVersion{Group: "", Version: "v1"})
    		if err != nil {
    			b.Fatalf("Conversion error: %v", err)
    		}
    		if _, err = scheme.UnsafeConvertToVersion(versionedObj, schema.GroupVersion{Group: "", Version: runtime.APIVersionInternal}); err != nil {
    			b.Fatalf("Conversion error: %v", err)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:49:09 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/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: Sat Feb 19 15:31:53 UTC 2022
    - 284 bytes
    - Viewed (0)
Back to top