Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for singular2 (0.88 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    						Plural:   "plural2",
    						Singular: "singular2",
    						Kind:     "kind2",
    						ListKind: "listkind2",
    					},
    					PreserveUnknownFields: pointer.BoolPtr(true),
    				},
    				Status: apiextensions.CustomResourceDefinitionStatus{
    					AcceptedNames: apiextensions.CustomResourceDefinitionNames{
    						Plural:   "plural2",
    						Singular: "singular2",
    						Kind:     "kind2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

        }
    
        private
        val logger = Logging.getLogger(ConfigurationCacheProblems::class.java)
    
        private
        fun Int.counter(singular: String, plural: String = "${singular}s"): String {
            return when (this) {
                0 -> "no $plural"
                1 -> "1 $singular"
                else -> "$this $plural"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor.go

    				//      UnstructuredJSONScheme.
    				//   2. SetUnstructuredContent does not populate "apiVersion" and
    				//      "kind" on each entry of its Items
    				//      field. UnstructuredJSONScheme does, inferring the singular
    				//      Kind from the list Kind.
    				//   3. SetUnstructuredContent ignores entries of "items" that are
    				//      not JSON objects or are objects without
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/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: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. 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)
Back to top