- Sort Score
- Num 10 results
- Language All
Results 1851 - 1860 of 2,146 for breathe (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/uk/docs/advanced/generate-clients.md
## Створити TypeScript SDK { #create-a-typescript-sdk } Почнімо з простого застосунку FastAPI: {* ../../docs_src/generate_clients/tutorial001_py310.py hl[7:9,12:13,16:17,21] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 15.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/path-params.md
由于路径首先匹配,始终会使用第一个定义的。 ## 预设值 { #predefined-values } 路径操作使用 Python 的 <abbr title="Enumeration - 枚举">`Enum`</abbr> 类型接收预设的路径参数。 ### 创建 `Enum` 类 { #create-an-enum-class } 导入 `Enum` 并创建继承自 `str` 和 `Enum` 的子类。 通过从 `str` 继承,API 文档就能把值的类型定义为**字符串**,并且能正确渲染。 然后,创建包含固定值的类属性,这些固定值是可用的有效值: {* ../../docs_src/path_params/tutorial005_py310.py hl[1,6:9] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 7.6K bytes - Click Count (0) -
internal/logger/target/kafka/kafka.go
logCh := h.logCh if logCh != nil { // We are not allowed to add when logCh is nil h.wg.Add(1) defer h.wg.Done() } h.logChMu.RUnlock() if logCh == nil { return } // Create a routine which sends json logs received // from an internal channel. for entry := range logCh { h.logEntry(entry) } } func (h *Target) logEntry(entry any) { atomic.AddInt64(&h.totalMessages, 1)Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 10.2K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ArrayTable.java
* @throws IllegalArgumentException if {@code rowKeys} or {@code columnKeys} contains duplicates * or if exactly one of {@code rowKeys} or {@code columnKeys} is empty. */ public static <R, C, V> ArrayTable<R, C, V> create( Iterable<? extends R> rowKeys, Iterable<? extends C> columnKeys) { return new ArrayTable<>(rowKeys, columnKeys); } /* * TODO(jlevy): Add factory methods taking an Enum class, instead of anCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 13 19:39:21 GMT 2025 - 26.2K bytes - Click Count (0) -
docs/ja/docs/tutorial/first-steps.md
`FastAPI`でも[Starlette](https://www.starlette.dev/)のすべての機能を利用可能です。 /// ### Step 2: `FastAPI`の「インスタンス」を生成 { #step-2-create-a-fastapi-instance } {* ../../docs_src/first_steps/tutorial001_py310.py hl[3] *} ここで、`app`変数が`FastAPI`クラスの「インスタンス」になります。 これが、すべてのAPIを作成するための主要なポイントになります。 ### Step 3: *path operation*を作成 { #step-3-create-a-path-operation } #### パス { #path } ここでの「パス」とは、最初の`/`から始まるURLの最後の部分を指します。 したがって、次のようなURLでは:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 15.9K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.10.md
role and role binding from the rbac boostrapper and replaces it with a policy applied via addon mgr. This also creates a new clusterrole allowing the service account to create events for any namespace. * client-go: alpha support for out-of-tree exec-based credential providers. For example, a cloud provider could create their own authentication system rather than using the standard authentication provided with Kubernetes. ([#59495](https://github.com/kubernetes/kubernetes/pull/59495),...
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu May 05 13:44:43 GMT 2022 - 341.8K bytes - Click Count (0) -
guava/src/com/google/common/base/Strings.java
String objectToString = o.getClass().getName() + '@' + Integer.toHexString(System.identityHashCode(o)); // Logger is created inline with fixed name to avoid forcing Proguard to create another class. Logger.getLogger("com.google.common.base.Strings") .log(WARNING, "Exception during lenientFormat for " + objectToString, e);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 12.5K bytes - Click Count (0) -
docs/es/docs/advanced/settings.md
</div> También viene incluido cuando instalas los extras `all` con: <div class="termy"> ```console $ pip install "fastapi[all]" ---> 100% ``` </div> ### Crear el objeto `Settings` { #create-the-settings-object } Importa `BaseSettings` de Pydantic y crea una sub-clase, muy similar a un modelo de Pydantic.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 11.7K bytes - Click Count (0) -
docs/pt/docs/advanced/generate-clients.md
## Crie um SDK em TypeScript { #create-a-typescript-sdk } Vamos começar com uma aplicação FastAPI simples: {* ../../docs_src/generate_clients/tutorial001_py310.py hl[7:9,12:13,16:17,21] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 10.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/path-params.md
因為第一個會被優先使用(路徑先匹配到)。 ## 預先定義的值 { #predefined-values } 如果你有一個接收「路徑參數」的「路徑操作」,但你希望可用的「路徑參數」值是預先定義好的,你可以使用標準的 Python <abbr title="Enumeration - 列舉">`Enum`</abbr>。 ### 建立 `Enum` 類別 { #create-an-enum-class } 匯入 `Enum` 並建立一個同時繼承自 `str` 與 `Enum` 的子類別。 繼承自 `str` 之後,API 文件就能知道這些值的型別必須是 `string`,並能正確地呈現。 然後建立具有固定值的類別屬性,這些就是可用的有效值: {* ../../docs_src/path_params/tutorial005_py310.py hl[1,6:9] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 8.4K bytes - Click Count (0)