Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for singular2 (0.16 sec)

  1. docs/pt/docs/tutorial/body-multiple-params.md

    ## Valores singulares no corpo
    
    Assim como existem uma `Query` e uma `Path` para definir dados adicionais para parâmetros de consulta e de rota, o **FastAPI** provê o equivalente para `Body`.
    
    Por exemplo, extendendo o modelo anterior, você poder decidir por ter uma outra chave `importance` no mesmo corpo, além de `item` e `user`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinitionnames.go

    // with apply.
    type CustomResourceDefinitionNamesApplyConfiguration struct {
    	Plural     *string  `json:"plural,omitempty"`
    	Singular   *string  `json:"singular,omitempty"`
    	ShortNames []string `json:"shortNames,omitempty"`
    	Kind       *string  `json:"kind,omitempty"`
    	ListKind   *string  `json:"listKind,omitempty"`
    	Categories []string `json:"categories,omitempty"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/customresourcedefinitionnames.go

    // with apply.
    type CustomResourceDefinitionNamesApplyConfiguration struct {
    	Plural     *string  `json:"plural,omitempty"`
    	Singular   *string  `json:"singular,omitempty"`
    	ShortNames []string `json:"shortNames,omitempty"`
    	Kind       *string  `json:"kind,omitempty"`
    	ListKind   *string  `json:"listKind,omitempty"`
    	Categories []string `json:"categories,omitempty"`
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCleanupProgressMonitor.java

                + optionalNumber(", ", skipped, " skipped"));
        }
    
        private String mandatoryNumber(long value, String singular, String plural) {
            return value == 1 ? value + singular : value + plural;
        }
    
        private String optionalNumber(String separator, long value, String description) {
            return value == 0 ? "" : separator + value + description;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. pkg/apis/apidiscovery/types.go

    	Scope ResourceScope
    	// 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
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      optional string scope = 3;
    
      // 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 Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/meta/multirestmapper.go

    }
    
    // ResourceSingularizer converts a REST resource name from plural to singular (e.g., from pods to pod)
    // This implementation supports multiple REST schemas and return the first match.
    func (m MultiRESTMapper) ResourceSingularizer(resource string) (singular string, err error) {
    	for _, t := range m {
    		singular, err = t.ResourceSingularizer(resource)
    		if err == nil {
    			return
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

      group: groupValue
      names:
        categories:
        - categoriesValue
        kind: kindValue
        listKind: listKindValue
        plural: pluralValue
        shortNames:
        - shortNamesValue
        singular: singularValue
      preserveUnknownFields: true
      scope: scopeValue
      versions:
      - additionalPrinterColumns:
        - description: descriptionValue
          format: formatValue
          jsonPath: jsonPathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/defaults.go

    				break
    			}
    		}
    	}
    }
    
    func SetDefaults_CustomResourceDefinitionSpec(obj *CustomResourceDefinitionSpec) {
    	if len(obj.Names.Singular) == 0 {
    		obj.Names.Singular = strings.ToLower(obj.Names.Kind)
    	}
    	if len(obj.Names.ListKind) == 0 && len(obj.Names.Kind) > 0 {
    		obj.Names.ListKind = obj.Names.Kind + "List"
    	}
    	if obj.Conversion == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 15 16:27:01 UTC 2019
    - 1.7K bytes
    - Viewed (0)
Back to top