- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,096 for Note (0.02 sec)
-
docs/pt/docs/tutorial/body-nested-models.md
] } ``` /// info | informação Note como o campo `images` agora tem uma lista de objetos de image. /// ## Modelos profundamente aninhados Você pode definir modelos profundamente aninhados de forma arbitrária: {* ../../docs_src/body_nested_models/tutorial007.py hl[9,14,20,23,27] *} /// info | informação
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.2K bytes - Viewed (0) -
docs/en/docs/advanced/additional-responses.md
For example, to declare another response with a status code `404` and a Pydantic model `Message`, you can write: {* ../../docs_src/additional_responses/tutorial001.py hl[18,22] *} /// note Keep in mind that you have to return the `JSONResponse` directly. /// /// info The `model` key is not part of OpenAPI.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/uk/docs/tutorial/cookie-params.md
Перше значення це значення за замовчуванням, ви можете також передати всі додаткові параметри валідації чи анотації: {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[9] *} /// note | Технічні Деталі `Cookie` це "сестра" класів `Path` і `Query`. Вони наслідуються від одного батьківського класу `Param`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 1.6K bytes - Viewed (0) -
docs/ru/docs/tutorial/request-forms.md
**FastAPI** гарантирует правильное чтение этих данных из соответствующего места, а не из JSON. /// note | Технические детали Данные из форм обычно кодируются с использованием "типа медиа" `application/x-www-form-urlencoded`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.1K bytes - Viewed (0) -
docs/uk/docs/tutorial/index.md
<div class="termy"> ```console $ pip install "fastapi[all]" ---> 100% ``` </div> ...який також включає `uvicorn`, який ви можете використовувати як сервер, який запускає ваш код. /// note Ви також можете встановити його частина за частиною. Це те, що ви, ймовірно, зробили б, коли захочете розгорнути свою програму у виробничому середовищі: ``` pip install fastapi ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 4.4K bytes - Viewed (0) -
docs/uk/docs/tutorial/request-forms.md
## Про "поля форми" HTML-форми (`<form></form>`) надсилають дані на сервер у "спеціальному" кодуванні, яке відрізняється від JSON. **FastAPI** подбає про те, щоб зчитати ці дані з правильного місця, а не з JSON. /// note | Технічні деталі Дані з форм зазвичай кодуються за допомогою "типу медіа" `application/x-www-form-urlencoded`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 28 14:13:50 UTC 2025 - 4K bytes - Viewed (0) -
docs/en/docs/advanced/behind-a-proxy.md
participant Server as FastAPI Server Client->>Proxy: HTTPS Request<br/>Host: mysuperapp.com<br/>Path: /items Note over Proxy: Proxy adds forwarded headers Proxy->>Server: HTTP Request<br/>X-Forwarded-For: [client IP]<br/>X-Forwarded-Proto: https<br/>X-Forwarded-Host: mysuperapp.com<br/>Path: /items Note over Server: Server interprets headers<br/>(if --forwarded-allow-ips is set)
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 16K bytes - Viewed (0) -
cmd/sts-datatypes.go
// returns. AssumedRoleUser AssumedRoleUser `xml:",omitempty"` // The temporary security credentials, which include an access key ID, a secret // access key, and a security (or session) token. // // Note: The size of the security token that STS APIs return is not fixed. We // strongly recommend that you make no assumptions about the maximum size. As // of this writing, the typical size is less than 4096 bytes, but that can vary.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 27 00:58:09 UTC 2022 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosTicketTest.java
} } @Test void testConstructorWithUnrecognizedField() throws IOException, GeneralSecurityException { // Test with an unrecognized field in the ticket // Note: In the actual implementation, field 99 would come after mandatory fields, // so decryption happens first. We test with a mocked successful decryption.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/pt/docs/tutorial/body-updates.md
Isso significa que você pode enviar apenas os dados que deseja atualizar, deixando o restante intacto. /// note | Nota `PATCH` é menos comumente usado e conhecido do que `PUT`. E muitas equipes usam apenas `PUT`, mesmo para atualizações parciais. Você é **livre** para usá-los como preferir, **FastAPI** não impõe restrições.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.8K bytes - Viewed (0)