- Sort Score
- Result 10 results
- Languages All
Results 191 - 200 of 470 for tipo (0.02 sec)
-
docs/tr/docs/history-design-future.md
</blockquote> ## Araştırma Önceki alternatifleri kullanarak hepsinden bir şeyler öğrenip, fikirler alıp, bunları kendim ve çalıştığım geliştirici ekipler için en iyi şekilde birleştirebilme şansım oldu. Mesela, ideal olarak standart Python tip belirteçlerine dayanması gerektiği açıktı.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Jul 29 23:35:07 UTC 2024 - 4.7K bytes - Viewed (0) -
docs/em/docs/advanced/settings.md
/// tip 📁 ▶️ ⏮️ ❣ (`.`) 🕵♂ 📁 🖥-💖 ⚙️, 💖 💾 & 🇸🇻. ✋️ 🇨🇻 📁 🚫 🤙 ✔️ ✔️ 👈 ☑ 📁. /// Pydantic ✔️ 🐕🦺 👂 ⚪️➡️ 👉 🆎 📁 ⚙️ 🔢 🗃. 👆 💪 ✍ 🌖 <a href="https://docs.pydantic.dev/latest/concepts/pydantic_settings/#dotenv-env-support" class="external-link" target="_blank">Pydantic ⚒: 🇨🇻 (.🇨🇻) 🐕🦺</a>. /// tip 👉 👷, 👆 💪 `pip install python-dotenv`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 11.1K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
If you are using **Git** (you should), add a `.gitignore` file to exclude everything in your `.venv` from Git. /// tip If you used <a href="https://github.com/astral-sh/uv" class="external-link" target="_blank">`uv`</a> to create the virtual environment, it already did this for you, you can skip this step. 😎 /// /// tip Do this **once**, right after you create the virtual environment. /// <div class="termy">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
docs/en/docs/release-notes.md
* ✏️ Fix typo in `docs/ja/docs/tutorial/encoder.md`. PR [#13815](https://github.com/fastapi/fastapi/pull/13815) by [@ruzia](https://github.com/ruzia). * ✏️ Fix typo in `docs/ja/docs/tutorial/handling-errors.md`. PR [#13814](https://github.com/fastapi/fastapi/pull/13814) by [@ruzia](https://github.com/ruzia).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Sep 05 12:48:45 UTC 2025 - 544.1K bytes - Viewed (0) -
docs/de/docs/advanced/security/oauth2-scopes.md
/// tip | Tipp Das Wichtige und „Magische“ hier ist, dass `get_current_user` für jede *Pfadoperation* eine andere Liste von `scopes` hat, die überprüft werden.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 15.1K 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) -
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) -
guava-tests/test/com/google/common/base/SplitterTest.java
String jacksons = "arfo(Marlon)aorf, (Michael)orfa, afro(Jackie)orfa, ofar(Jemaine), aff(Tito)"; Iterable<String> family = COMMA_SPLITTER .trimResults(CharMatcher.anyOf("afro").or(CharMatcher.whitespace())) .split(jacksons); assertThat(family) .containsExactly("(Marlon)", "(Michael)", "(Jackie)", "(Jemaine)", "(Tito)") .inOrder(); } public void testStringSimpleSplit() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.5K 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) -
docs/ru/docs/tutorial/testing.md
``` //// //// tab | Python 3.10+ без Annotated /// tip | Подсказка По возможности используйте версию с `Annotated`. /// ```Python {!> ../../docs_src/app_testing/app_b_py310/main.py!} ``` //// //// tab | Python 3.8+ без Annotated /// tip | Подсказка По возможности используйте версию с `Annotated`. /// ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 10.1K bytes - Viewed (0)