- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 445 for taip (0.02 sec)
-
docs/vi/docs/deployment/cloud.md
Trong hầu hết các trường hợp, các nhà cung cấp dịch vụ cloud lớn đều có hướng dẫn triển khai FastAPI với họ. ## Nhà cung cấp dịch vụ Cloud - Nhà tài trợ Một vài nhà cung cấp dịch vụ cloud ✨ [**tài trợ cho FastAPI**](../help-fastapi.md#sponsor-the-author){.internal-link target=_blank} ✨, điều này giúp đảm bảo sự phát triển liên tục và khỏe mạnh của FastAPI và hệ sinh thái của nó.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 15:19:49 UTC 2025 - 1.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
.named("ImmutableLongArray.asList, head subList"), ListTestSuiteBuilder.using(new ImmutableLongArrayTailSubListAsListGenerator()) .named("ImmutableLongArray.asList, tail subList"), ListTestSuiteBuilder.using(new ImmutableLongArrayMiddleSubListAsListGenerator()) .named("ImmutableLongArray.asList, middle subList")); TestSuite suite = new TestSuite();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/em/docs/advanced/async-tests.md
{* ../../docs_src/async_tests/test_main.py hl[7] *} /// tip 🗒 👈 💯 🔢 🔜 `async def` ↩️ `def` ⏭ 🕐❔ ⚙️ `TestClient`. /// ⤴️ 👥 💪 ✍ `AsyncClient` ⏮️ 📱, & 📨 🔁 📨 ⚫️, ⚙️ `await`. {* ../../docs_src/async_tests/test_main.py hl[9:12] *} 👉 🌓: ```Python response = client.get('/') ``` ...👈 👥 ⚙️ ⚒ 👆 📨 ⏮️ `TestClient`. /// tip 🗒 👈 👥 ⚙️ 🔁/⌛ ⏮️ 🆕 `AsyncClient` - 📨 🔁. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.9K bytes - Viewed (0) -
docs/es/docs/advanced/async-tests.md
---> 100% ``` </div> ## En Detalle El marcador `@pytest.mark.anyio` le dice a pytest que esta función de test debe ser llamada asíncronamente: {* ../../docs_src/async_tests/test_main.py hl[7] *} /// tip | Consejo Note que la función de test ahora es `async def` en lugar de solo `def` como antes al usar el `TestClient`. ///
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4K bytes - Viewed (0) -
src/test/resources/before_script.sh
#!/bin/bash set -xuo pipefail temp_log_file=/tmp/fess-build.$$ unzip target/releases/fess-*.zip > ${temp_log_file} 2>&1 tail ${temp_log_file} ./fess-*/bin/fess > ${temp_log_file} 2>&1 & temp_json_file=/tmp/fess-log.$$ touch ${temp_json_file} error_count=0 while true ; do status=$(curl -w '%{http_code}\n' -s -o ${temp_json_file} "http://localhost:8080/api/v1/health") cat ${temp_json_file} if [[ x"${status}" = x200 ]] ; then
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Feb 10 03:25:34 UTC 2024 - 863 bytes - Viewed (0) -
docs/zh-hant/docs/virtual-environments.md
```console $ uv venv ``` </div> /// tip 預設情況下,`uv` 會在一個名為 `.venv` 的目錄中建立一個虛擬環境。 但你可以透過傳遞一個額外的引數來自訂它,指定目錄的名稱。 /// //// 這個命令會在一個名為 `.venv` 的目錄中建立一個新的虛擬環境。 /// details | `.venv`,或是其他名稱 你可以在不同的目錄下建立虛擬環境,但通常我們會把它命名為 `.venv`。 /// ## 啟動虛擬環境 啟動新的虛擬環境來確保你運行的任何 Python 指令或安裝的套件都能使用到它。 /// tip **每次**開始一個**新的終端會話**來在這個專案工作時,你都需要執行這個操作。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 22:39:33 UTC 2024 - 20.7K bytes - Viewed (0) -
.travis/run.sh
BASE_DIR=`pwd` LOG_FILE=$BASE_DIR/test.log mvn test > $LOG_FILE 2>&1 ret=$? if [ $ret != 0 ] ; then for f in `find $BASE_DIR -type f | grep surefire-reports | grep -v /TEST-` ; do cat $f done fi tail -n1000 $LOG_FILE
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Feb 02 08:45:33 UTC 2019 - 273 bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt
19AA..19AB ; valid # 5.2 NEW TAI LUE LETTER HIGH SUA..NEW TAI LUE LETTER LOW SUA 19AC..19AF ; disallowed # NA <reserved-19AC>..<reserved-19AF> 19B0..19C9 ; valid # 4.1 NEW TAI LUE VOWEL SIGN VOWEL SHORTENER..NEW TAI LUE TONE MARK-2
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Feb 10 11:25:47 UTC 2024 - 854.1K bytes - Viewed (0) -
docs/pt/docs/tutorial/testing.md
``` //// //// tab | Python 3.10+ non-Annotated /// tip | Dica Prefira usar a versão `Annotated` se possível. /// ```Python {!> ../../docs_src/app_testing/app_b_py310/main.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// tip | Dica Prefira usar a versão `Annotated` se possível. /// ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6.8K bytes - Viewed (0) -
docs/en/docs/advanced/async-tests.md
``` </div> ## In Detail { #in-detail } The marker `@pytest.mark.anyio` tells pytest that this test function should be called asynchronously: {* ../../docs_src/async_tests/test_main.py hl[7] *} /// tip Note that the test function is now `async def` instead of just `def` as before when using the `TestClient`. /// Then we can create an `AsyncClient` with the app, and send async requests to it, using `await`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.9K bytes - Viewed (0)