Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 106 for singular2 (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    	ObjectMeta: metav1.ObjectMeta{
    		Name: "coolfoo.stable.example.com",
    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolfoos",
    			Singular:   "coolfoo",
    			ShortNames: []string{"foo"},
    			Kind:       "CoolFoo",
    			ListKind:   "CoolFooList",
    			Categories: []string{"cool"},
    		},
    		Scope: v1.ClusterScoped,
    		Versions: []v1.CustomResourceDefinitionVersion{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/body-nested-models.md

    * Conversão de dados
    * Validação de dados
    * Documentação automatica
    
    ## Tipos especiais e validação
    
    Além dos tipos singulares normais como `str`, `int`, `float`, etc. Você também pode usar tipos singulares mais complexos que herdam de `str`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/body.md

    ## Sem o Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// Must be all lowercase.
    	Plural string `json:"plural" protobuf:"bytes,1,opt,name=plural"`
    	// singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.
    	// +optional
    	Singular string `json:"singular,omitempty" protobuf:"bytes,2,opt,name=singular"`
    	// shortNames are short names for the resource, exposed in API discovery documents,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    		}
    
    		apiResourcesForDiscovery = append(apiResourcesForDiscovery, metav1.APIResource{
    			Name:               crd.Status.AcceptedNames.Plural,
    			SingularName:       crd.Status.AcceptedNames.Singular,
    			Namespaced:         crd.Spec.Scope == apiextensionsv1.NamespaceScoped,
    			Kind:               crd.Status.AcceptedNames.Kind,
    			Verbs:              verbs,
    			ShortNames:         crd.Status.AcceptedNames.ShortNames,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #if ( $Helper.isFlatItems( $field ) )
            #set ( $fieldTagName = $Helper.singular( $fieldTagName ) )
          #end
          #set ( $fieldCapName = $Helper.capitalise($field.name))
                    case "${fieldTagName}": {
          #if ( $field.type == "String" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/storage.go

    	// is verbosely written for clarity.
    
    	// **** IMPORTANT *****
    	// as a governing rule. User must (either)
    	// -- Use singular only (old client)
    	// -- singular and plural fields (new clients)
    
    	if oldSvc == nil {
    		// This was a create operation.
    		// User specified singular and not plural (e.g. an old client), so init
    		// plural for them.
    		if len(newSvc.Spec.ClusterIP) > 0 && len(newSvc.Spec.ClusterIPs) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// too: plural.group and it must be all lowercase.
    	Plural string
    	// Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>
    	Singular string
    	// ShortNames are short names for the resource.  It must be all lowercase.
    	ShortNames []string
    	// Kind is the serialized kind of the resource.  It is normally CamelCase and singular.
    	Kind string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

    // Verifies an reduction op's `input` and reduction `dims`.
    LogicalResult VerifyReductionInputAndDims(Value input, Value dims,
                                              Location loc);
    
    // A type range with description (in singular form) attached to it.
    using TypeRangeWithDesc = std::pair<TypeRange, StringRef>;
    
    LogicalResult VerifyTypeRangesAreCompatible(Operation *op,
                                                TypeRangeWithDesc range0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/builder/builder_test.go

    					Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    						{
    							Name: "v1",
    						},
    					},
    					Names: apiextensionsv1.CustomResourceDefinitionNames{
    						Plural:   "foos",
    						Singular: "foo",
    						Kind:     "Foo",
    						ListKind: "FooList",
    					},
    					Scope: apiextensionsv1.NamespaceScoped,
    				},
    			}, "v1", schema, Options{V2: tt.v2})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top