Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 185 for singular2 (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest.go

    	// If there's a custom acceptor, delegate to it. This is extremely rare.
    	if scope.AcceptsGroupVersionDelegate != nil {
    		return scope.AcceptsGroupVersionDelegate.AcceptsGroupVersion(gv)
    	}
    	// Fall back to only allowing the singular Kind. This is the typical behavior.
    	return gv == scope.Kind.GroupVersion()
    }
    
    func (scope *RequestScope) AllowsMediaTypeTransform(mimeType, mimeSubType string, gvk *schema.GroupVersionKind) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "singularName": {
                "default": "",
                "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
                "type": "string"
              },
              "storageVersionHash": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                  "default": "",
                  "type": "string"
                },
                "type": "array",
                "x-kubernetes-list-type": "atomic"
              },
              "singular": {
                "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
                "type": "string"
              }
            },
            "required": [
              "plural",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

    spec:
      group: security.istio.io
      names:
        categories:
        - istio-io
        - security-istio-io
        kind: AuthorizationPolicy
        listKind: AuthorizationPolicyList
        plural: authorizationpolicies
        singular: authorizationpolicy
      scope: Namespaced
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            properties:
              spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  5. plugin/pkg/admission/gc/gc_admission_test.go

    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    func (r *neverReturningRESTMapper) ResourceSingularizer(resource string) (singular string, err error) {
    	// this ok because if the test works, this method should never be called.
    	panic("test failed")
    }
    
    func TestGCAdmission(t *testing.T) {
    	expectNoError := func(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	if e.SingularQualifiedResource.Empty() {
    		return fmt.Errorf("store %#v must have a non-empty singular qualified resource", e)
    	}
    	if e.DefaultQualifiedResource.Group != e.SingularQualifiedResource.Group {
    		return fmt.Errorf("store for %#v, singular and plural qualified resource's group name's must match", e)
    	}
    	if e.NewFunc == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

    spec:
      group: extensions.istio.io
      names:
        categories:
        - istio-io
        - extensions-istio-io
        kind: WasmPlugin
        listKind: WasmPluginList
        plural: wasmplugins
        singular: wasmplugin
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: 'CreationTimestamp is a timestamp representing the server time
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  8. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshot
        listKind: VolumeSnapshotList
        plural: volumesnapshots
        shortNames:
          - vs
        singular: volumesnapshot
      scope: Namespaced
      versions:
        - additionalPrinterColumns:
            - description: Indicates if the snapshot is ready to be used to restore a volume.
              jsonPath: .status.readyToUse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    					{JSONPath: ".spec.quantity"},
    					{JSONPath: ".spec.size"},
    					{JSONPath: ".spec.branded"},
    				},
    			},
    		},
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural:   "shirts",
    			Singular: "shirt",
    			Kind:     "Shirt",
    			ListKind: "ShirtList",
    		},
    		Scope:                 apiextensionsv1.ClusterScoped,
    		PreserveUnknownFields: false,
    	},
    }
    
    const shirtInstance1 = `
    kind: Shirt
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message APIResource {
      // name is the plural name of the resource.
      optional string name = 1;
    
      // singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
    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