- Sort Score
- Num 10 results
- Language All
Results 261 - 270 of 517 for resMap (0.05 seconds)
-
docs/de/docs/tutorial/body-nested-models.md
Und das `dict`, welches Sie als `weights` erhalten, wird `int`-Schlüssel und `float`-Werte haben. /// ## Zusammenfassung { #recap } Mit **FastAPI** haben Sie die maximale Flexibilität von Pydantic-Modellen, während Ihr Code einfach, kurz und elegant bleibt. Aber mit all den Vorzügen: * Editor-Unterstützung (Codevervollständigung überall)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 7.5K bytes - Click Count (0) -
internal/grid/connection.go
client, err := c.newMuxClient(ctx) if err != nil { return err } defer c.outgoing.Delete(client.MuxID) resp := make(chan Response, 10) client.RequestStateless(h, req, resp) for r := range resp { if r.Err != nil { return r.Err } if len(r.Msg) > 0 { err := cb(r.Msg) if err != nil { if errors.Is(err, ErrDone) { break
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 46.9K bytes - Click Count (0) -
cmd/prepare-storage.go
if err != nil { return err } // Indicate that the liveness check for a peer call req.Header.Set(xhttp.MinIOPeerCall, "true") resp, err := httpClient.Do(req) if err != nil { return err } xhttp.DrainBody(resp.Body) return nil } // connect to list of endpoints and load all Erasure disk formats, validate the formats are correctCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Jul 12 20:51:54 GMT 2024 - 11.1K bytes - Click Count (1) -
docs/zh-hant/docs/tutorial/body-multiple-params.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 4.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/path-params-numeric-validations.md
Aynısı <abbr title="less than - küçüktür"><code>lt</code></abbr> için de geçerlidir. {* ../../docs_src/path_params_numeric_validations/tutorial006_an_py310.py hl[13] *} ## Özet { #recap } `Query`, `Path` (ve henüz görmedikleriniz) ile metadata ve string doğrulamalarını, [Query Parametreleri ve String Doğrulamalar](query-params-str-validations.md) bölümündekiyle aynı şekilde tanımlayabilirsiniz.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.8K bytes - Click Count (0) -
docs/fr/docs/tutorial/security/get-current-user.md
Et tous ces milliers de *chemins d'accès* peuvent tenir en seulement 3 lignes : {* ../../docs_src/security/tutorial002_an_py310.py hl[30:32] *} ## Récapitulatif { #recap } Vous pouvez désormais obtenir l'utilisateur actuel directement dans votre *fonction de chemin d'accès*. Nous avons déjà fait la moitié du chemin.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 4.8K bytes - Click Count (0) -
docs/ru/docs/tutorial/body-multiple-params.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 19:57:34 GMT 2026 - 8.2K bytes - Click Count (0) -
docs/ko/docs/tutorial/dependencies/sub-dependencies.md
/// ```Python hl_lines="1" async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)): return {"fresh_value": fresh_value} ``` //// ## 정리 { #recap } 여기서 사용한 그럴듯한 용어들을 제외하면, **Dependency Injection** 시스템은 꽤 단순합니다. *경로 처리 함수*와 같은 형태의 함수들일 뿐입니다. 하지만 여전히 매우 강력하며, 임의로 깊게 중첩된 의존성 "그래프"(트리)를 선언할 수 있습니다. /// tip | 팁 이 단순한 예시만 보면 그다지 유용해 보이지 않을 수도 있습니다.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 4.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/body-updates.md
接下来,用 `.model_copy()` 为已有模型创建副本,并传入 `update` 参数,值为包含更新数据的 `dict`。 例如,`stored_item_model.model_copy(update=update_data)`: {* ../../docs_src/body_updates/tutorial002_py310.py hl[33] *} ### 部分更新小结 { #partial-updates-recap } 简而言之,应用部分更新应当: * (可选)使用 `PATCH` 而不是 `PUT`。 * 提取已存储的数据。 * 把该数据放入 Pydantic 模型。 * 生成不含输入模型默认值的 `dict`(使用 `exclude_unset`)。 * 这样只会更新用户实际设置的值,而不会用模型中的默认值覆盖已存储的值。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 3.7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/dependencies/sub-dependencies.md
若可行,建議使用 `Annotated` 的版本。 /// ```Python hl_lines="1" async def needy_dependency(fresh_value: str = Depends(get_value, use_cache=False)): return {"fresh_value": fresh_value} ``` //// ## 回顧 { #recap } 撇開這裡用到的術語不談,**相依性注入(Dependency Injection)** 系統其實很簡單。 它只是一些與路徑操作函式外觀相同的函式。 但它非常強大,允許你宣告任意深度巢狀的相依「圖」(樹)。 /// tip 用這些簡單的例子看起來可能不那麼有用。 但在關於安全性的章節中,你會看到它有多實用。 你也會看到它能為你省下多少程式碼。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 3.6K bytes - Click Count (0)