- Sort Score
- Num 10 results
- Language All
Results 531 - 540 of 1,655 for dcos (0.05 seconds)
-
docs/fr/docs/advanced/openapi-callbacks.md
/// ### Vérifier la documentation { #check-the-docs } Vous pouvez maintenant démarrer votre application et aller sur [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs). Vous verrez votre documentation incluant une section « Callbacks » pour votre *chemin d'accès* qui montre à quoi l’*API externe* devrait ressembler :Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 8.7K bytes - Click Count (0) -
docs/uk/docs/tutorial/schema-extra-example.md
{* ../../docs_src/schema_extra_example/tutorial003_an_py310.py hl[22:29] *} ### Приклад у UI документації { #example-in-the-docs-ui } За допомогою будь-якого з наведених вище методів це виглядатиме так у `/docs`: <img src="/img/tutorial/body-fields/image01.png"> ### `Body` з кількома `examples` { #body-with-multiple-examples } Звичайно, ви також можете передати кілька `examples`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/zh/docs/advanced/openapi-callbacks.md
/// tip | 提示 注意,不能把路由本身(`invoices_callback_router`)传递给 `callbacks=`,要传递 `invoices_callback_router.routes` 中的 `.routes` 属性。 /// ### 查看文档 { #check-the-docs } 现在,启动应用并打开 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)。 就能看到文档的*路径操作*已经包含了**回调**的内容以及*外部 API*:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 6.6K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy
/** * Test setups defined in the build instead of the docs so they can be * shared between many doc files. */ @Input Map<String, String> setups = new HashMap() /** * Test teardowns defined in the build instead of the docs so they can be * shared between many doc files. */ @Input Map<String, String> teardowns = new HashMap()Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 19.5K bytes - Click Count (0) -
docs/en/data/sponsors.yml
title: The Gold Standard in Retail Account Linking img: https://fastapi.tiangolo.com/img/sponsors/subtotal.svg - url: https://docs.railway.com/guides/fastapi?utm_medium=integration&utm_source=docs&utm_campaign=fastapi title: Deploy enterprise applications at startup speed img: https://fastapi.tiangolo.com/img/sponsors/railway.png - url: https://serpapi.com/?utm_source=fastapi_websiteCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Jan 19 20:55:32 GMT 2026 - 4.4K bytes - Click Count (0) -
docs/ko/docs/tutorial/cookie-param-models.md
**FastAPI**는 요청에서 받은 **쿠키**에서 **각 필드**에 대한 데이터를 **추출**하고 정의한 Pydantic 모델을 줍니다. ## 문서 확인하기 { #check-the-docs } 문서 UI `/docs`에서 정의한 쿠키를 볼 수 있습니다: <div class="screenshot"> <img src="/img/tutorial/cookie-param-models/image01.png"> </div> /// info | 정보 명심하세요, 내부적으로 **브라우저는 쿠키를 특별한 방식으로 처리**하기 때문에 **자바스크립트**가 쉽게 쿠키를 건드릴 수 **없습니다**. `/docs`에서 **API 문서 UI**로 이동하면 *경로 처리*에 대한 쿠키의 **문서**를 볼 수 있습니다.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 3.6K bytes - Click Count (0) -
docs/ja/docs/how-to/graphql.md
**ASGI** をサポートする **GraphQL** ライブラリの一部を以下に示します。**FastAPI** と組み合わせて使用できます: * [Strawberry](https://strawberry.rocks/) 🍓 * [FastAPI 向けドキュメント](https://strawberry.rocks/docs/integrations/fastapi)あり * [Ariadne](https://ariadnegraphql.org/) * [FastAPI 向けドキュメント](https://ariadnegraphql.org/docs/fastapi-integration)あり * [Tartiflette](https://tartiflette.io/) * ASGI 連携用の [Tartiflette ASGI](https://tartiflette.github.io/tartiflette-asgi/) ありCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 3.2K bytes - Click Count (0) -
scripts/mkdocs_hooks.py
translation_banner_path = docs_dir_path / "translation-banner.md" if not translation_banner_path.is_file(): translation_banner_path = ( docs_dir_path.parent.parent / "en" / "docs" / "translation-banner.md" ) return translation_banner_path.read_text(encoding="utf-8") @lru_cache def get_mkdocs_material_langs() -> list[str]: material_path = Path(material.__file__).parent
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/uk/docs/tutorial/request-form-models.md
**FastAPI** **витягне** дані для **кожного поля** з **формових даних** у запиті та надасть вам Pydantic-модель, яку ви визначили. ## Перевірте документацію { #check-the-docs } Ви можете перевірити це в UI документації за `/docs`: <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## Забороніть додаткові поля форми { #forbid-extra-form-fields }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 3.2K bytes - Click Count (0) -
docs/de/docs/tutorial/dependencies/dependencies-with-yield.md
/// /// note | Technische Details Jede Funktion, die dekoriert werden kann mit: * [`@contextlib.contextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.contextmanager) oder * [`@contextlib.asynccontextmanager`](https://docs.python.org/3/library/contextlib.html#contextlib.asynccontextmanager) kann auch als gültige **FastAPI**-Abhängigkeit verwendet werden.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 14.4K bytes - Click Count (0)