Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for singular2 (0.24 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1beta1.CustomResourceDefinition.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer/fuzzer.go

    			c.FuzzNoCustom(obj)
    
    			// match our defaulter
    			if len(obj.Scope) == 0 {
    				obj.Scope = apiextensions.NamespaceScoped
    			}
    			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"
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/body.md

    ## Without Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. 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)
  7. samples/custom-bootstrap/README.md

    This will merge the passed in configuration with the default configuration. Singular values will replace the default values, while repeated values will be appended.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 22:34:00 UTC 2024
    - 2.1K 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/en/docs/tutorial/body-nested-models.md

    * Editor support (completion, etc.), even for nested models
    * Data conversion
    * Data validation
    * Automatic documentation
    
    ## Special types and validation
    
    Apart from normal singular types like `str`, `int`, `float`, etc. you can use more complex singular types that inherit from `str`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top