- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 631 for variable (0.05 sec)
-
docs/fr/docs/tutorial/first-steps.md
/// ### Étape 2 : créer une "instance" `FastAPI` ```Python hl_lines="3" {!../../docs_src/first_steps/tutorial001.py!} ``` Ici la variable `app` sera une "instance" de la classe `FastAPI`. Ce sera le point principal d'interaction pour créer toute votre API. Cette `app` est la même que celle à laquelle fait référence `uvicorn` dans la commande :
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.3K bytes - Viewed (0) -
docs/fr/docs/tutorial/query-params-str-validations.md
Imaginez que vous vouliez que votre paramètre se nomme `item-query`. Comme dans la requête : ``` http://127.0.0.1:8000/items/?item-query=foobaritems ``` Mais `item-query` n'est pas un nom de variable valide en Python. Le nom le plus proche serait `item_query`. Mais vous avez vraiment envie que ce soit exactement `item-query`...
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 17:14:38 UTC 2024 - 9.5K bytes - Viewed (0) -
docs/de/docs/tutorial/extra-models.md
```Python user_in = UserIn(username="john", password="secret", email="******@****.***") ``` und wir rufen seine `.dict()`-Methode auf: ```Python user_dict = user_in.dict() ``` dann haben wir jetzt in der Variable `user_dict` ein `dict` mit den gleichen Daten (es ist ein `dict` statt eines Pydantic-Modellobjekts). Wenn wir es ausgeben: ```Python print(user_dict) ``` bekommen wir ein Python-`dict`: ```Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.7K bytes - Viewed (0) -
internal/s3select/sql/parser.go
} // Grammar for Operand: // // operand → multOp ( ("-" | "+") multOp )* // multOp → unary ( ("/" | "*" | "%") unary )* // unary → "-" unary | primary // primary → Value | Variable | "(" expression ")" // // An Operand is a single term followed by an optional sequence of // terms separated by +/- type Operand struct { Left *MultOp `parser:"@@"` Right []*OpFactor `parser:"(@@)*"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 12.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 38K bytes - Viewed (0) -
docs/de/docs/tutorial/security/first-steps.md
/// Die Variable `oauth2_scheme` ist eine Instanz von `OAuth2PasswordBearer`, aber auch ein „Callable“. Es könnte wie folgt aufgerufen werden: ```Python oauth2_scheme(some, parameters) ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
// =================================================================================== // Variable // protected SearchRequestParamsRewriter[] searchRequestParamsRewriters = {}; // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
public static final String MAVEN_REPO_LOCAL = "maven.repo.local"; /** * Maven central repository URL. * The property will have the value of the <code>MAVEN_REPO_CENTRAL</code> * environment variable if it is defined. * * @since 4.0.0 */ @Config(defaultValue = "https://repo.maven.apache.org/maven2") public static final String MAVEN_REPO_CENTRAL = "maven.repo.central"; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:24:08 UTC 2024 - 14K bytes - Viewed (0) -
doc/asm.html
</li> </ul> <p> The value of <code>GOMIPS</code> environment variable (<code>hardfloat</code> or <code>softfloat</code>) is made available to assembly code by predefining either <code>GOMIPS_hardfloat</code> or <code>GOMIPS_softfloat</code>. </p> <p> The value of <code>GOMIPS64</code> environment variable (<code>hardfloat</code> or
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto
// If absent, there are no parameters for this policy and the param CEL variable will not be provided to validation expressions. // If ParamKind refers to a non-existent kind, this policy definition is mis-configured and the FailurePolicy is applied. // If paramKind is specified but paramRef is unset in ValidatingAdmissionPolicyBinding, the params variable will be null. // +optional optional ParamKind paramKind = 1;
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 25.7K bytes - Viewed (0)