Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 262 for Served (0.72 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation"
            },
            "served": {
              "description": "served is a flag enabling/disabling this version from being served via REST APIs",
              "type": "boolean",
              "default": false
            },
            "storage": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    				Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    					{
    						Name:    "v1beta1",
    						Served:  true,
    						Storage: true,
    						Schema: &apiextensionsv1.CustomResourceValidation{
    							OpenAPIV3Schema: validationSchema,
    						},
    					},
    					{
    						Name:    "v1",
    						Served:  true,
    						Storage: false,
    						Schema: &apiextensionsv1.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  3. common/scripts/metallb-native.yaml

                    type: integer
                type: object
              status:
                description: BFDProfileStatus defines the observed state of BFDProfile.
                type: object
            type: object
        served: true
        storage: true
        subresources:
          status: {}
    ---
    apiVersion: apiextensions.k8s.io/v1
    kind: CustomResourceDefinition
    metadata:
      annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			return nil, fmt.Errorf("the server could not properly serve the resource")
    		}
    		kind := schema.GroupVersionKind{Group: crd.Spec.Group, Version: v.Name, Kind: crd.Status.AcceptedNames.Kind}
    		if len(kind.Kind) == 0 {
    			utilruntime.HandleError(fmt.Errorf("CustomResourceDefinition %s has unexpected empty status.acceptedNames.kind", crd.Name))
    			return nil, fmt.Errorf("the server could not properly serve the kind")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    
    	_, err = cacher.Watch(context.TODO(), "pod/ns", storage.ListOptions{
    		ResourceVersion: "",
    		Predicate:       storage.Everything,
    	})
    	if err != nil {
    		t.Errorf("Watch with RV=0 should be served from cache: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Served = in.Served
    	out.Storage = in.Storage
    	out.Deprecated = in.Deprecated
    	out.DeprecationWarning = (*string)(unsafe.Pointer(in.DeprecationWarning))
    	if in.Schema != nil {
    		in, out := &in.Schema, &out.Schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.Served = in.Served
    	out.Storage = in.Storage
    	out.Deprecated = in.Deprecated
    	out.DeprecationWarning = (*string)(unsafe.Pointer(in.DeprecationWarning))
    	if in.Schema != nil {
    		in, out := &in.Schema, &out.Schema
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"serverAddressByClientCIDRs": "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonServerTimeout means the server can be reached and understood the request,
    	// but cannot complete the action in a reasonable time. The client should retry the request.
    	// This is may be due to temporary server load or a transient communication issue with
    	// another server. Status code 500 is used because the HTTP spec provides no suitable
    	// server-requested client retry and the 5xx class represents actionable errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // continue may be set if the user set a limit on the number of items returned, and indicates that
      // the server has more data available. The value is opaque and may be used to issue another request
      // to the endpoint that served this list to retrieve the next set of available objects. Continuing a
      // consistent list may not be possible if the server configuration has changed or more than a few
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top