- Sort Score
- Num 10 results
- Language All
Results 311 - 320 of 637 for CONSOLE (0.09 seconds)
-
docs/erasure/README.md
-v /mnt/data3:/data3 \ -v /mnt/data4:/data4 \ -v /mnt/data5:/data5 \ -v /mnt/data6:/data6 \ -v /mnt/data7:/data7 \ -v /mnt/data8:/data8 \ quay.io/minio/minio server /data{1...8} --console-address ":9001" ``` ### 3. Test your setupCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 4.2K bytes - Click Count (0) -
docs/zh-hant/docs/index.md
* [Pydantic](https://docs.pydantic.dev/) 負責資料部分。 ## 安裝 { #installation } 建立並啟用一個[虛擬環境](https://fastapi.tiangolo.com/zh-hant/virtual-environments/),然後安裝 FastAPI: <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> **注意**:請務必將 `"fastapi[standard]"` 用引號包起來,以確保在所有終端機中都能正常運作。 ## 範例 { #example } ### 建立 { #create-it }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 20.8K bytes - Click Count (0) -
docs/ja/docs/advanced/async-tests.md
`test_main.py` は `main.py` のテストを持ち、次のようになります: {* ../../docs_src/async_tests/app_a_py310/test_main.py *} ## 実行 { #run-it } テストはいつも通り次で実行できます: <div class="termy"> ```console $ pytest ---> 100% ``` </div> ## 詳細 { #in-detail } マーカー `@pytest.mark.anyio` は、このテスト関数を非同期で呼び出すべきであることを pytest に伝えます: {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[7] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 4.5K bytes - Click Count (0) -
docs/en/docs/tutorial/request-files.md
To receive uploaded files, first install [`python-multipart`](https://github.com/Kludex/python-multipart). Make sure you create a [virtual environment](../virtual-environments.md), activate it, and then install it, for example: ```console $ pip install python-multipart ``` This is because uploaded files are sent as "form data". /// ## Import `File` { #import-file } Import `File` and `UploadFile` from `fastapi`:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7K bytes - Click Count (0) -
docs/en/docs/index.md
## Installation { #installation } Create and activate a [virtual environment](https://fastapi.tiangolo.com/virtual-environments/) and then install FastAPI: <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> **Note**: Make sure you put `"fastapi[standard]"` in quotes to ensure it works in all terminals. ## Example { #example }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 21.4K bytes - Click Count (0) -
.teamcity/performance-test-durations.json
"durations" : [ { "testProject" : "springBootApp", "linux" : 550 } ] }, { "scenario" : "org.gradle.performance.regression.corefeature.RichConsolePerformanceTest.clean assemble with rich console", "durations" : [ { "testProject" : "bigNative", "linux" : 169 }, { "testProject" : "largeJavaMultiProject", "linux" : 809 }, { "testProject" : "largeMonolithicJavaProject",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 04:45:09 GMT 2026 - 26.1K bytes - Click Count (0) -
docs/ja/docs/index.md
* [Pydantic](https://docs.pydantic.dev/)(データ部分) ## インストール { #installation } [仮想環境](https://fastapi.tiangolo.com/ja/virtual-environments/) を作成して有効化し、それから FastAPI をインストールします。 <div class="termy"> ```console $ pip install "fastapi[standard]" ---> 100% ``` </div> **注**: すべてのターミナルで動作するように、`"fastapi[standard]"` は必ずクォートで囲んでください。 ## アプリケーション例 { #example } ### 作成 { #create-it }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 25.6K bytes - Click Count (0) -
docs/zh/docs/advanced/async-tests.md
文件 `test_main.py` 将包含针对 `main.py` 的测试,现在它可能看起来如下: {* ../../docs_src/async_tests/app_a_py310/test_main.py *} ## 运行测试 { #run-it } 您可以通过以下方式照常运行测试: <div class="termy"> ```console $ pytest ---> 100% ``` </div> ## 详细说明 { #in-detail } 这个标记 `@pytest.mark.anyio` 会告诉 pytest 该测试函数应该被异步调用: {* ../../docs_src/async_tests/app_a_py310/test_main.py hl[7] *} /// tip | 提示Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.9K bytes - Click Count (0) -
.teamcity/performance-tests-ci.json
"coverage" : { "per_day" : [ "linux" ] } } ] }, { "testId" : "org.gradle.performance.regression.corefeature.RichConsolePerformanceTest.clean assemble with rich console", "groups" : [ { "testProject" : "bigNative", "coverage" : { "per_day" : [ "linux" ] } }, { "testProject" : "largeJavaMultiProject", "coverage" : {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 03 21:56:33 GMT 2026 - 32.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/sql-databases.md
這是一份非常簡短的教學,如果你想更全面學習資料庫、SQL,或更進階的功能,請參考 [SQLModel 文件](https://sqlmodel.tiangolo.com/)。 ## 安裝 `SQLModel` { #install-sqlmodel } 首先,請先建立你的[虛擬環境](../virtual-environments.md)、啟用它,然後安裝 `sqlmodel`: <div class="termy"> ```console $ pip install sqlmodel ---> 100% ``` </div> ## 建立只有單一模型的應用 { #create-the-app-with-a-single-model } 我們先用單一 SQLModel 模型建立這個應用的最簡版。 接著我們會在下方用多個模型來提升安全性與彈性。🤓 ### 建立模型 { #create-models }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.8K bytes - Click Count (0)