Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for singular2 (0.16 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    	// For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    func NewRandomNameV1CustomResourceDefinition(scope apiextensionsv1.ResourceScope) *apiextensionsv1.CustomResourceDefinition {
    	// ensure the singular doesn't end in an s for now
    	gName := names.SimpleNameGenerator.GenerateName("foo") + "a"
    	return &apiextensionsv1.CustomResourceDefinition{
    		ObjectMeta: metav1.ObjectMeta{Name: gName + "s.mygroup.example.com"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  3. hack/testdata/CRD/example-crd-1-namespaced.yaml

              type: object
              properties:
                spec:
                  type: object
                  properties:
                    test:
                      type: string
      names:
        plural: examples
        singular: example
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 26 06:01:46 UTC 2022
    - 491 bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/body-multiple-params.md

    ## Singular values in body
    
    The same way there is a `Query` and `Path` to define extra data for query and path parameters, **FastAPI** provides an equivalent `Body`.
    
    For example, extending the previous model, you could decide that you want to have another key `importance` in the same body, besides the `item` and `user`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// singularResource is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
    	// For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	}
    	if err := equalToAcceptedOrFresh(requestedNames.Singular, acceptedNames.Singular, allResources); err != nil {
    		namesAcceptedCondition.Status = apiextensionsv1.ConditionFalse
    		namesAcceptedCondition.Reason = "SingularConflict"
    		namesAcceptedCondition.Message = err.Error()
    	} else {
    		newNames.Singular = requestedNames.Singular
    	}
    	if !reflect.DeepEqual(requestedNames.ShortNames, acceptedNames.ShortNames) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers_test.go

    		Group: "group.com",
    		Names: apiextensionsv1.CustomResourceDefinitionNames{
    			Plural:   "plural",
    			Singular: "singular",
    			Kind:     "kind",
    			ListKind: "listkind",
    		},
    	}
    	testCRDAcceptedNames := apiextensionsv1.CustomResourceDefinitionNames{
    		Plural:   "plural",
    		Singular: "singular",
    		Kind:     "kind",
    		ListKind: "listkind",
    	}
    	return &apiextensionsv1.CustomResourceDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 20.3K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/globalnetworksets-crd.yaml

      name: globalnetworksets.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: GlobalNetworkSet
        listKind: GlobalNetworkSetList
        plural: globalnetworksets
        singular: globalnetworkset
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            description: GlobalNetworkSet contains a set of arbitrary IP sub-networks/CIDRs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/helpers_test.go

    		Version: "version",
    		Scope:   ResourceScope("Cluster"),
    		Names: CustomResourceDefinitionNames{
    			Plural:   "plural",
    			Singular: "singular",
    			Kind:     "kind",
    			ListKind: "listkind",
    		},
    	}
    	testCRDAcceptedNames := CustomResourceDefinitionNames{
    		Plural:   "plural",
    		Singular: "singular",
    		Kind:     "kind",
    		ListKind: "listkind",
    	}
    	return &CustomResourceDefinition{
    		ObjectMeta: testCRDObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 17 19:08:05 UTC 2019
    - 15.4K bytes
    - Viewed (0)
  10. cluster/addons/calico-policy-controller/ipamhandle-crd.yaml

        addonmanager.kubernetes.io/mode: Reconcile
      name: ipamhandles.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: IPAMHandle
        listKind: IPAMHandleList
        plural: ipamhandles
        singular: ipamhandle
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top