- Sort Score
- Num 10 results
- Language All
Results 481 - 490 of 705 for imagem (0.13 seconds)
-
docs/pt/docs/tutorial/query-params-str-validations.md
/// A documentação interativa da API será atualizada de acordo, permitindo múltiplos valores: <img src="/img/tutorial/query-params-str-validations/image02.png"> ### Lista de parâmetros de consulta / múltiplos valores com valores padrão { #query-parameter-list-multiple-values-with-defaults } Você também pode definir uma `list` de valores padrão caso nenhum seja fornecido:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 17.2K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt
* or response body. * * [rfc_2045]: http://tools.ietf.org/html/rfc2045 */ class MediaType internal constructor( internal val mediaType: String, /** * Returns the high-level media type, such as "text", "image", "audio", "video", or "application". */ @get:JvmName("type") val type: String, /** * Returns a specific media subtype, such as "plain" or "png", "mpeg", "mp4" or "xml". */
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 5.9K bytes - Click Count (0) -
docs/de/docs/advanced/sub-applications.md
<img src="/img/tutorial/sub-applications/image01.png"> Öffnen Sie dann die Dokumentation für die Unteranwendung unter [http://127.0.0.1:8000/subapi/docs](http://127.0.0.1:8000/subapi/docs). Sie sehen die automatische API-Dokumentation für die Unteranwendung, welche nur deren eigene _Pfadoperationen_ anzeigt, alle unter dem korrekten Unterpfad-Präfix `/subapi`: <img src="/img/tutorial/sub-applications/image02.png">
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/es/docs/tutorial/header-param-models.md
## Revisa la Documentación { #check-the-docs } Puedes ver los headers requeridos en la interfaz de documentación en `/docs`: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## Prohibir Headers Extra { #forbid-extra-headers } En algunos casos de uso especiales (probablemente no muy comunes), podrías querer **restringir** los headers que deseas recibir.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 2.8K bytes - Click Count (0) -
docs/fr/docs/tutorial/debugging.md
Il démarrera alors le serveur avec votre code **FastAPI**, s'arrêtera à vos points d'arrêt, etc. Voici à quoi cela pourrait ressembler : <img src="/img/tutorial/debugging/image01.png"> --- Si vous utilisez Pycharm, vous pouvez : - Ouvrez le menu « Run ». - Sélectionnez l'option « Debug ... ». - Un menu contextuel s'affiche alors.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 2.9K bytes - Click Count (0) -
docs/pt/docs/tutorial/header-param-models.md
## Checando a documentação { #check-the-docs } Você pode ver os headers necessários na interface gráfica da documentação em `/docs`: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## Proibindo Cabeçalhos adicionais { #forbid-extra-headers } Em alguns casos de uso especiais (provavelmente não muito comuns), você pode querer **restringir** os cabeçalhos que você quer receber.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Nov 12 16:23:57 GMT 2025 - 2.9K bytes - Click Count (0) -
docs/zh/docs/tutorial/query-param-models.md
**FastAPI** 将会从请求的**查询参数**中**提取**出**每个字段**的数据,并将其提供给你定义的 Pydantic 模型。 ## 查看文档 { #check-the-docs } 你可以在 `/docs` 页面的 UI 中查看查询参数: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## 禁止额外的查询参数 { #forbid-extra-query-parameters } 在一些特殊的使用场景中(可能不是很常见),你可能希望**限制**你要接收的查询参数。 你可以使用 Pydantic 的模型配置来 `forbid` 任何 `extra` 字段:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:39:41 GMT 2026 - 2.1K bytes - Click Count (0) -
src/main/webapp/css/admin/bootstrap.min.css.map
caption's text aligns with the image.\n display: inline-block;\n}\n\n.figure-img {\n margin-bottom: $spacer * .5;\n line-height: 1;\n}\n\n.figure-caption {\n @include font-size($figure-caption-font-size);\n color: $figure-caption-color;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n\n@mixin img-fluid() {\n // Part 1: Set a maximum relative to the parent\n max-width: 100%;\n // Part 2:...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 26 01:49:09 GMT 2024 - 639.3K bytes - Click Count (1) -
docs/tr/docs/tutorial/query-param-models.md
## Dokümanları Kontrol Edin { #check-the-docs } Query parameter’ları `/docs` altındaki dokümantasyon arayüzünde görebilirsiniz: <div class="screenshot"> <img src="/img/tutorial/query-param-models/image01.png"> </div> ## Ek Query Parameter'ları Yasaklayın { #forbid-extra-query-parameters } Bazı özel kullanım senaryolarında (muhtemelen çok yaygın değil), almak istediğiniz query parameter’ları **kısıtlamak** isteyebilirsiniz.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 05 15:43:38 GMT 2026 - 2.4K bytes - Click Count (0) -
docs/de/docs/advanced/stream-data.md
Zum Beispiel können Sie eine `PNGStreamingResponse` erstellen, die den `Content-Type`-Header mit dem Attribut `media_type` auf `image/png` setzt: {* ../../docs_src/stream_data/tutorial002_py310.py ln[6,19:20] hl[20] *} Dann können Sie diese neue Klasse mit `response_class=PNGStreamingResponse` in Ihrer Pfadoperation-Funktion verwenden:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:48:21 GMT 2026 - 6K bytes - Click Count (0)