- Sort Score
- Num 10 results
- Language All
Results 1691 - 1700 of 2,636 for info (0.15 seconds)
-
docs/ru/docs/advanced/response-directly.md
/// ## Возврат `Response` { #return-a-response } Вы можете возвращать `Response` или любой его подкласс. /// info | Информация `JSONResponse` сам по себе является подклассом `Response`. /// И когда вы возвращаете `Response`, **FastAPI** передаст его напрямую.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 6.9K bytes - Click Count (0) -
docs/ja/docs/tutorial/request-form-models.md
# フォームモデル { #form-models } FastAPI では、フォームフィールドを宣言するために **Pydantic モデル**を使用できます。 /// info | 情報 フォームを使うには、まず [`python-multipart`](https://github.com/Kludex/python-multipart) をインストールします。 まず [仮想環境](../virtual-environments.md) を作成して有効化し、そのうえでインストールしてください。例えば: ```console $ pip install python-multipart ``` /// /// note | 備考 これは FastAPI バージョン `0.113.0` 以降でサポートされています。🤓 ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 2.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
這些依賴會以與一般依賴相同的方式被執行/解析。但它們的值(如果有回傳)不會傳遞給你的路徑操作函式。 /// tip 有些編輯器會檢查未使用的函式參數,並將其標示為錯誤。 把這些依賴放在路徑操作裝飾器中,可以確保它們被執行,同時避免編輯器/工具報錯。 這也有助於避免讓新加入的開發者看到未使用的參數時,以為它是不必要的而感到困惑。 /// /// info 在這個範例中我們使用了自訂的(虛構的)標頭 `X-Key` 與 `X-Token`。 但在實際情況下,當你實作安全機制時,使用整合的 [Security utilities(下一章)](../security/index.md) 會獲得更多好處。 /// ## 依賴的錯誤與回傳值 { #dependencies-errors-and-return-values } 你可以使用與平常相同的依賴函式。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.7K bytes - Click Count (0) -
tests/test_tutorial/test_body_nested_models/test_tutorial007.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 11.6K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.18.md
- Add delays between goroutines for vm instance update ([#88094](https://github.com/kubernetes/kubernetes/pull/88094), [@aramase](https://github.com/aramase)) [SIG Cloud Provider] - Add init containers log to cluster dump info. ([#88324](https://github.com/kubernetes/kubernetes/pull/88324), [@zhouya0](https://github.com/zhouya0)) [SIG CLI]
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Wed Jun 16 17:18:28 GMT 2021 - 373.2K bytes - Click Count (0) -
docs/fr/docs/advanced/sub-applications.md
### Vérifier la documentation API automatique { #check-the-automatic-api-docs } Exécutez maintenant la commande `fastapi` : <div class="termy"> ```console $ fastapi dev <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div> Et ouvrez la documentation à [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 3.2K bytes - Click Count (0) -
tests/test_tutorial/test_body_multiple_params/test_tutorial003.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 8.1K bytes - Click Count (0) -
docs/zh-hant/docs/advanced/events.md
### `shutdown` 事件 { #shutdown-event } 要加入一個在應用關閉時執行的函式,使用事件 `"shutdown"` 來宣告: {* ../../docs_src/events/tutorial002_py310.py hl[6] *} 在這裡,`shutdown` 事件處理器函式會把一行文字 `"Application shutdown"` 寫入檔案 `log.txt`。 /// info 在 `open()` 函式中,`mode="a"` 表示「append(附加)」;也就是說,這行文字會加在檔案現有內容之後,而不會覆寫先前的內容。 /// /// tip 注意這裡我們使用的是標準 Python 的 `open()` 函式來操作檔案。 這涉及 I/O(輸入/輸出),也就是需要「等待」資料寫入磁碟。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/ja/docs/tutorial/testing.md
[HTTPX](https://www.python-httpx.org) がベースで、さらにその設計は Requests をベースにしているため、とても馴染みがあり直感的です。 これを使用すると、**FastAPI** と共に [pytest](https://docs.pytest.org/) を直接利用できます。 ## `TestClient` を使用 { #using-testclient } /// info `TestClient` を使用するには、まず [`httpx`](https://www.python-httpx.org) をインストールします。 [仮想環境](../virtual-environments.md) を作成し、それを有効化してから、例えば以下のようにインストールしてください: ```console $ pip install httpx ``` ///Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 7.1K bytes - Click Count (0) -
docs/de/docs/features.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 10.3K bytes - Click Count (0)