- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 114 for declarations (0.15 sec)
-
docs/en/docs/tutorial/header-params.md
/// ## Duplicate headers { #duplicate-headers } It is possible to receive duplicate headers. That means, the same header with multiple values. You can define those cases using a list in the type declaration. You will receive all the values from the duplicate header as a Python `list`. For example, to declare a header of `X-Token` that can appear more than once, you can write:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/Invokable.java
return accessibleObject.getDeclaredAnnotations(); } // We ought to be able to implement GenericDeclaration instead its parent AnnotatedElement. // That would give us this method declaration. But for some reason, implementing // GenericDeclaration leads to weird errors in Android tests: // IncompatibleClassChangeError: interface not implemented
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 18.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapValues.java
} @GwtIncompatible @J2ktIncompatible /* * The mainline copy of ImmutableMapValues doesn't produce this serialized form anymore, though * the backport does. For now, we're keeping the class declaration in *both* flavors so that both * flavors can read old data or data from the other flavor. However, we strongly discourage * relying on this, as we have made incompatible changes to serialized forms in the past and
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 3.9K bytes - Viewed (0) -
docs/de/docs/advanced/using-request-directly.md
Dazu müssen Sie direkt auf den Request zugreifen. {* ../../docs_src/using_request_directly/tutorial001.py hl[1,7:8] *} Durch die Deklaration eines *Pfadoperation-Funktionsparameters*, dessen Typ der `Request` ist, weiß **FastAPI**, dass es den `Request` diesem Parameter übergeben soll. /// tip | Tipp
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Nov 12 19:57:07 UTC 2024 - 2.5K bytes - Viewed (0) -
docs/es/docs/python-types.md
Con **FastAPI** declaras parámetros con anotaciones de tipos y obtienes: * **Soporte del editor**. * **Chequeo de tipos**. ...y **FastAPI** usa las mismas declaraciones para: * **Definir requerimientos**: de parámetros de path de la request, parámetros de query, headers, bodies, dependencias, etc. * **Convertir datos**: de la request al tipo requerido.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 17.6K bytes - Viewed (1) -
docs/de/docs/index.md
Nur Standard-**Python+**. Zum Beispiel für ein `int`: ```Python item_id: int ``` oder für ein komplexeres `Item`-Modell: ```Python item: Item ``` ... und mit dieser einen Deklaration erhalten Sie: * Editor-Unterstützung, einschließlich: * Code-Vervollständigung. * Typprüfungen. * Validierung von Daten: * Automatische und eindeutige Fehler, wenn die Daten ungültig sind.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 21.1K bytes - Viewed (0) -
docs/en/docs/advanced/openapi-callbacks.md
To create the callback *path operation* use the same `APIRouter` you created above. It should look just like a normal FastAPI *path operation*: * It should probably have a declaration of the body it should receive, e.g. `body: InvoiceEvent`. * And it could also have a declaration of the response it should return, e.g. `response_model=InvoiceEventReceived`. {* ../../docs_src/openapi_callbacks/tutorial001.py hl[16:18,21:22,28:32] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/es/docs/tutorial/header-params.md
/// ## Headers duplicados Es posible recibir headers duplicados. Eso significa, el mismo header con múltiples valores. Puedes definir esos casos usando una lista en la declaración del tipo. Recibirás todos los valores del header duplicado como una `list` de Python. Por ejemplo, para declarar un header de `X-Token` que puede aparecer más de una vez, puedes escribir:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 3.1K bytes - Viewed (0) -
src/test/java/jcifs/DialectVersionTest.java
} @Test @DisplayName("Should return consistent ordinal values") void testOrdinalValues() { // Ordinal values should be consistent with enum declaration order assertTrue(DialectVersion.SMB1.ordinal() < DialectVersion.SMB202.ordinal()); assertTrue(DialectVersion.SMB202.ordinal() < DialectVersion.SMB210.ordinal());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/de/docs/advanced/templates.md
Außerdem wurde in früheren Versionen das `request`-Objekt als Teil der Schlüssel-Wert-Paare im Kontext für Jinja2 übergeben. /// /// tip | Tipp Durch die Deklaration von `response_class=HTMLResponse` kann die Dokumentationsoberfläche erkennen, dass die Response HTML sein wird. /// /// note | Technische Details
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.6K bytes - Viewed (0)