- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 30 for 89 (0.01 sec)
-
docs/en/docs/tutorial/dependencies/sub-dependencies.md
## First dependency "dependable" You could create a first dependency ("dependable") like: //// tab | Python 3.10+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9-10"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/de/docs/tutorial/dependencies/sub-dependencies.md
Sie könnten eine erste Abhängigkeit („Dependable“) wie folgt erstellen: //// tab | Python 3.10+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9-10"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.2K bytes - Viewed (0) -
docs/ru/docs/tutorial/dependencies/sub-dependencies.md
## Провайдер зависимости Можно создать первую зависимость следующим образом: //// tab | Python 3.10+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py39.py!} ``` //// //// tab | Python 3.6+ ```Python hl_lines="9-10"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/dependencies/sub-dependencies.md
## Primeira dependência "injetável" Você pode criar uma primeira dependência (injetável) dessa forma: //// tab | Python 3.10+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py310.py!} ``` //// //// tab | Python 3.9+ ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005_an_py39.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="9-10"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HostAndPortTest.java
checkFromStringCase("", 88, "", 88, false); checkFromStringCase(":", 99, "", 99, false); checkFromStringCase(":123", -1, "", 123, true); checkFromStringCase("\nOMG\t", 89, "\nOMG\t", 89, false); } private static void checkFromStringCase( String hpString, int defaultPort, @Nullable String expectHost, int expectPort, boolean expectHasExplicitPort) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 9.4K bytes - Viewed (0) -
docs/em/docs/tutorial/dependencies/sub-dependencies.md
# 🎧-🔗 👆 💪 ✍ 🔗 👈 ✔️ **🎧-🔗**. 👫 💪 **⏬** 👆 💪 👫. **FastAPI** 🔜 ✊ 💅 🔬 👫. ## 🥇 🔗 "☑" 👆 💪 ✍ 🥇 🔗 ("☑") 💖: //// tab | 🐍 3️⃣.6️⃣ & 🔛 ```Python hl_lines="8-9" {!> ../../docs_src/dependencies/tutorial005.py!} ``` //// //// tab | 🐍 3️⃣.1️⃣0️⃣ & 🔛 ```Python hl_lines="6-7" {!> ../../docs_src/dependencies/tutorial005_py310.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/dependencies/sub-dependencies.md
# 子依赖项 FastAPI 支持创建含**子依赖项**的依赖项。 并且,可以按需声明任意**深度**的子依赖项嵌套层级。 **FastAPI** 负责处理解析不同深度的子依赖项。 ### 第一层依赖项 下列代码创建了第一层依赖项: ```Python hl_lines="8-9" {!../../docs_src/dependencies/tutorial005.py!} ``` 这段代码声明了类型为 `str` 的可选查询参数 `q`,然后返回这个查询参数。 这个函数很简单(不过也没什么用),但却有助于让我们专注于了解子依赖项的工作方式。 ### 第二层依赖项 接下来,创建另一个依赖项函数,并同时用该依赖项自身再声明一个依赖项(所以这也是一个「依赖项」): ```Python hl_lines="13"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.2K bytes - Viewed (0) -
docs/ja/docs/tutorial/dependencies/sub-dependencies.md
# サブ依存関係 **サブ依存関係** を持つ依存関係を作成することができます。 それらは必要なだけ **深く** することができます。 **FastAPI** はそれらを解決してくれます。 ### 最初の依存関係「依存可能なもの」 以下のような最初の依存関係(「依存可能なもの」)を作成することができます: ```Python hl_lines="8 9" {!../../docs_src/dependencies/tutorial005.py!} ``` これはオプショナルのクエリパラメータ`q`を`str`として宣言し、それを返すだけです。 これは非常にシンプルです(あまり便利ではありません)が、サブ依存関係がどのように機能するかに焦点を当てるのに役立ちます。 ### 第二の依存関係 「依存可能なもの」と「依存」
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.4K bytes - Viewed (0) -
cmd/apierrorcode_string.go
_ = x[ErrMissingFields-83] _ = x[ErrMissingCredTag-84] _ = x[ErrCredMalformed-85] _ = x[ErrInvalidRegion-86] _ = x[ErrInvalidServiceS3-87] _ = x[ErrInvalidServiceSTS-88] _ = x[ErrInvalidRequestVersion-89] _ = x[ErrMissingSignTag-90] _ = x[ErrMissingSignHeadersTag-91] _ = x[ErrMalformedDate-92] _ = x[ErrMalformedPresignedDate-93] _ = x[ErrMalformedCredentialDate-94] _ = x[ErrMalformedExpires-95]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 22:26:38 UTC 2024 - 21.4K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/index.md
Let's first focus on the dependency. It is just a function that can take all the same parameters that a *path operation function* can take: {* ../../docs_src/dependencies/tutorial001_an_py310.py hl[8:9] *} That's it. **2 lines**. And it has the same shape and structure that all your *path operation functions* have.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:18:17 UTC 2024 - 9.2K bytes - Viewed (0)