- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 61 for 89 (0.05 sec)
-
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) -
okhttp-sse/src/main/kotlin/okhttp3/sse/internal/ServerSentEventReader.kt
} in 3..4 -> { source.readData(data) } in 5..7 -> { data.writeByte('\n'.code) // 'data' on a line of its own. } in 8..9 -> { id = source.readUtf8LineStrict().takeIf { it.isNotEmpty() } } in 10..12 -> { id = null // 'id' on a line of its own. } in 13..14 -> {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.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/en/docs/img/deployment/https/https02.drawio
<mxGeometry relative="1" as="geometry"> <mxPoint x="65.05882352941171" y="-220" as="sourcePoint"/> </mxGeometry> </mxCell> <mxCell id="89" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=none;endFill=1;strokeWidth=3;dashed=1;" parent="1" source="32" target="100" edge="1">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 12 00:06:16 UTC 2022 - 9.4K bytes - Viewed (0) -
docs/en/docs/img/deployment/https/https01.drawio
<mxGeometry relative="1" as="geometry"> <mxPoint x="65.05882352941171" y="-220" as="sourcePoint"/> </mxGeometry> </mxCell> <mxCell id="89" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=none;endFill=1;strokeWidth=3;dashed=1;" parent="1" source="32" target="100" edge="1">
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu May 12 00:06:16 UTC 2022 - 6.2K bytes - Viewed (0) -
docs/sts/tls.md
``` Certificate: Data: Version: 3 (0x2) Serial Number: 35:ac:60:46:ad:8d:de:18:dc:0b:f6:98:14:ee:89:e8 Signature Algorithm: ED25519 Issuer: CN = consoleAdmin Validity Not Before: Jul 19 15:08:44 2021 GMT Not After : Aug 18 15:08:44 2021 GMT Subject: CN = consoleAdmin
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 6K bytes - Viewed (1) -
CHANGELOG/CHANGELOG-1.8.md
- [Client Binaries](#client-binaries-5) - [Server Binaries](#server-binaries-5) - [Node Binaries](#node-binaries-5) - [Changelog since v1.8.9](#changelog-since-v189) - [Other notable changes](#other-notable-changes-5) - [v1.8.9](#v189) - [Downloads for v1.8.9](#downloads-for-v189) - [Client Binaries](#client-binaries-6) - [Server Binaries](#server-binaries-6) - [Node Binaries](#node-binaries-6)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.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)