- Sort Score
- Num 10 results
- Language All
Results 681 - 690 of 1,292 for title (0.19 seconds)
-
docs/fr/docs/deployment/manually.md
## Serveurs ASGI { #asgi-servers } Allons un peu plus en détail. FastAPI utilise un standard pour construire des frameworks web Python et des serveurs appelé <abbr title="Asynchronous Server Gateway Interface - Interface passerelle serveur asynchrone">ASGI</abbr>. FastAPI est un framework web ASGI.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.4K bytes - Click Count (0) -
docs/zh/docs/tutorial/first-steps.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/recipes.md
--- title: Recipes description: A collection of common/useful code examples for Kotlin and Java --- # Recipes We've written some recipes that demonstrate how to solve common problems with OkHttp. Read through them to learn about how everything works together. Cut-and-paste these examples freely; that's what they're for. ### Synchronous Get ([.kt][SynchronousGetKotlin], [.java][SynchronousGetJava])
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 47.8K bytes - Click Count (0) -
docs/ko/docs/deployment/manually.md
to quit<b>)</b> ``` </div> 대부분의 경우에는 이것으로 동작합니다. 😎 예를 들어 이 명령은 컨테이너나 서버 등에서 **FastAPI** 앱을 시작할 때 사용할 수 있습니다. ## ASGI 서버 { #asgi-servers } 이제 조금 더 자세히 살펴보겠습니다. FastAPI는 <abbr title="Asynchronous Server Gateway Interface - 비동기 서버 게이트웨이 인터페이스">ASGI</abbr>라고 불리는, Python 웹 프레임워크와 서버를 만들기 위한 표준을 사용합니다. FastAPI는 ASGI 웹 프레임워크입니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 7.4K bytes - Click Count (0) -
docs/en/docs/tutorial/body.md
* Those schemas will be part of the generated OpenAPI schema, and used by the automatic documentation <abbr title="User Interfaces">UIs</abbr>. ## Automatic docs { #automatic-docs } The JSON Schemas of your models will be part of your OpenAPI generated schema, and will be shown in the interactive API docs:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 6.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/metadata.md
# 中繼資料與文件 URL { #metadata-and-docs-urls } 你可以在你的 FastAPI 應用程式中自訂多項中繼資料設定。 ## API 的中繼資料 { #metadata-for-api } 你可以設定下列欄位,這些欄位會用在 OpenAPI 規格與自動產生的 API 文件介面中: | 參數 | 型別 | 說明 | |------------|------|-------------| | `title` | `str` | API 的標題。 | | `summary` | `str` | API 的簡短摘要。<small>自 OpenAPI 3.1.0、FastAPI 0.99.0 起可用。</small> | | `description` | `str` | API 的簡短說明。可使用 Markdown。 | | `version` | `string` | API 的版本號。這是你自己的應用程式版本,不是 OpenAPI 的版本,例如 `2.5.0`。 |Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 5.6K bytes - Click Count (0) -
docs/ja/docs/alternatives.md
しかし、それはPythonの型ヒントが存在する前に作られたものです。そのため、すべての<dfn title="データがどのように構成されるべきかの定義">スキーマ</dfn>を定義するためには、Marshmallowが提供する特定のユーティリティやクラスを使用する必要があります。 /// check | **FastAPI**へ与えたインスピレーション コードで「スキーマ」を定義し、データの型やバリデーションを自動で提供する点。 /// ### [Webargs](https://webargs.readthedocs.io/en/latest/) { #webargs } APIに求められる他の大きな機能として、<dfn title="Pythonデータへの読み込みと変換">受信したリクエストデータのパース</dfn>があります。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 30.6K bytes - Click Count (0) -
docs/en/docs/css/custom.css
border-radius: 50%; position: relative; } .user .avatar-wrapper img { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } .user .title { text-align: center; } .user .count { font-size: 80%; text-align: center; } a.announce-link:link, a.announce-link:visited { color: #fff; } a.announce-link:hover {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Mon Mar 23 13:56:46 GMT 2026 - 6.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
return ""; } @Override public String getIndexFieldTitle() { return "title"; } @Override public String getIndexFieldContent() { return "content"; } @Override public String getIndexFieldUrl() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.6K bytes - Click Count (0) -
docs/zh/docs/fastapi-cli.md
# FastAPI CLI { #fastapi-cli } **FastAPI <abbr title="command line interface - 命令行接口">CLI</abbr>** 是一个命令行程序,你可以用它来部署和运行你的 FastAPI 应用、管理 FastAPI 项目,等等。 当你安装 FastAPI(例如使用 `pip install "fastapi[standard]"`)时,会附带一个可以在终端中运行的命令行程序。 要在开发环境中运行你的 FastAPI 应用,可以使用 `fastapi dev` 命令: <div class="termy"> ```console $ <font color="#4E9A06">fastapi</font> devCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 5.8K bytes - Click Count (0)