Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for encodingVersion (0.24 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml

        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      storageVersions:
      - apiServerID: apiServerIDValue
        decodableVersions:
        - decodableVersionsValue
        encodingVersion: encodingVersionValue
        servedVersions:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/internal.apiserver.k8s.io.v1alpha1.StorageVersion.yaml

        observedGeneration: 3
        reason: reasonValue
        status: statusValue
        type: typeValue
      storageVersions:
      - apiServerID: apiServerIDValue
        decodableVersions:
        - decodableVersionsValue
        encodingVersion: encodingVersionValue
        servedVersions:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. pkg/apis/apiserverinternal/types.go

    	// The ID of the reporting API server.
    	APIServerID string
    
    	// The API server encodes the object to this version when persisting it in
    	// the backend (e.g., etcd).
    	EncodingVersion string
    
    	// The API server can decode objects encoded in these versions.
    	// The encodingVersion must be included in the decodableVersions.
    	DecodableVersions []string
    
    	// The API server can serve these versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apiserverinternal/v1alpha1/generated.proto

      optional string apiServerID = 1;
    
      // The API server encodes the object to this version when persisting it in
      // the backend (e.g., etcd).
      optional string encodingVersion = 2;
    
      // The API server can decode objects encoded in these versions.
      // The encodingVersion must be included in the decodableVersions.
      // +listType=set
      repeated string decodableVersions = 3;
    
      // The API server can serve these versions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/apis/apiserverinternal/v1alpha1/zz_generated.conversion.go

    	out.APIServerID = in.APIServerID
    	out.EncodingVersion = in.EncodingVersion
    	out.DecodableVersions = *(*[]string)(unsafe.Pointer(&in.DecodableVersions))
    	out.ServedVersions = *(*[]string)(unsafe.Pointer(&in.ServedVersions))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apiserverinternal/v1alpha1/types_swagger_doc_generated.go

    	"apiServerID":       "The ID of the reporting API server.",
    	"encodingVersion":   "The API server encodes the object to this version when persisting it in the backend (e.g., etcd).",
    	"decodableVersions": "The API server can decode objects encoded in these versions. The encodingVersion must be included in the decodableVersions.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/internal.apiserver.k8s.io.v1alpha1.StorageVersion.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/groupversion.go

    	var filtered []*storageversion.ResourceInfo
    	for _, info := range infos {
    		// if EncodingVersion is empty, then the apiserver does not
    		// need to register this resource via the storage version API,
    		// thus we can remove it.
    		if info != nil && len(info.EncodingVersion) > 0 {
    			filtered = append(filtered, info)
    		}
    	}
    	return filtered
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top