- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 386 for Models (0.04 seconds)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
* <li><strong>Model Version Update</strong>: Updates {@code <modelVersion>} to 4.1.0</li> * </ol> * * <h3>Default Behavior</h3> * If no specific options are provided, the tool applies {@code --fix-model} and {@code --plugins} by default to ensure Maven 4 compatibility. * * <h3>All-in-One Option</h3> * The {@code --all} option is a convenience flag equivalent to {@code --model 4.1.0 --infer --fix-model --plugins}.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 12.5K bytes - Click Count (0) -
docs/en/docs/tutorial/server-sent-events.md
Import `ServerSentEvent` from `fastapi.sse`: {* ../../docs_src/server_sent_events/tutorial002_py310.py hl[4,26] *} The `data` field is always encoded as JSON. You can pass any value that can be serialized as JSON, including Pydantic models. ## Raw Data { #raw-data } If you need to send data **without** JSON encoding, use `raw_data` instead of `data`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java
/** * Provides access to the contents of a source independently of the * backing store (e.g. file system, database, memory). * <p> * This is mainly used to parse files into objects such as Maven projects, * models, settings, or toolchains. The source implementation handles * all the details of accessing the underlying content while providing * a uniform API to consumers. * <p> * Sources can represent: * <ul>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jan 29 09:46:53 GMT 2025 - 4K bytes - Click Count (0) -
docs/ja/docs/tutorial/sql-databases.md
<div class="termy"> ```console $ pip install sqlmodel ---> 100% ``` </div> ## 単一モデルでアプリ作成 { #create-the-app-with-a-single-model } まずは最も簡単な、単一の SQLModel モデルだけを使うバージョンを作ります。 後で、下記のとおり複数モデルにしてセキュリティと汎用性を高めます。🤓 ### モデルの作成 { #create-models } `SQLModel` をインポートしてデータベースモデルを作成します: {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[1:11] hl[7:11] *}
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 18K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/security/get-current-user.md
你可能記得,請求體也會用 Pydantic 模型宣告。 這裡因為你使用了 `Depends`,**FastAPI** 不會混淆。 /// /// check | 檢查 這個依賴系統的設計讓我們可以有不同的依賴(不同的 "dependables"),都回傳 `User` 模型。 我們不受限於只能有一個能回傳該類型資料的依賴。 /// ## 其他模型 { #other-models } 現在你可以在*路徑操作函式*中直接取得目前使用者,並在**依賴注入**層處理安全機制,使用 `Depends`。 而且你可以為安全需求使用任意模型或資料(本例中是 Pydantic 模型 `User`)。 但你不受限於某個特定的資料模型、類別或型別。 想在模型中只有 `id` 與 `email` 而沒有任何 `username`?當然可以。你可以用同樣的工具達成。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 3.7K bytes - Click Count (0) -
android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java
} public MaxCodePoint(String userFriendly) { value = decode(userFriendly); } } /** * The default values of maxCodePoint below provide pretty good performance models of different * kinds of common human text. * * @see MaxCodePoint#decode */ @Param({"0x80", "0x90", "0x100", "0x800", "0x10000", "0x10ffff"}) MaxCodePoint maxCodePoint; @Param({"16384"})Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue May 13 18:46:00 GMT 2025 - 5.3K bytes - Click Count (0) -
docs/en/docs/advanced/response-directly.md
When you create a **FastAPI** *path operation* you can normally return any data from it: a `dict`, a `list`, a Pydantic model, a database model, etc. If you declare a [Response Model](../tutorial/response-model.md) FastAPI will use it to serialize the data to JSON, using Pydantic. If you don't declare a response model, FastAPI will use the `jsonable_encoder` explained in [JSON Compatible Encoder](../tutorial/encoder.md) and put it in a `JSONResponse`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java
} return false; } /** * Checks if a model version is eligible for inference optimizations. * Models 4.0.0+ are eligible (4.0.0 has limited inference, 4.1.0+ has full inference). * * @param modelVersion the model version to check * @return true if eligible for inference */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 9.5K bytes - Click Count (0) -
docs/zh/docs/tutorial/security/get-current-user.md
还记得请求体也是使用 Pydantic 模型声明的吧。 放心,因为使用了 `Depends`,**FastAPI** 不会搞混。 /// /// check | 检查 依赖系统的这种设计方式可以支持不同的依赖项返回同一个 `User` 模型。 而不是局限于只能有一个返回该类型数据的依赖项。 /// ## 其它模型 { #other-models } 接下来,直接在*路径操作函数*中获取当前用户,并用 `Depends` 在**依赖注入**系统中处理安全机制。 开发者可以使用任何模型或数据满足安全需求(本例中是 Pydantic 的 `User` 模型)。 而且,不局限于只能使用特定的数据模型、类或类型。 不想在模型中使用 `username`,而是使用 `id` 和 `email`?当然可以。这些工具也支持。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 3.6K bytes - Click Count (0) -
.idea/gradle.xml
<option value="$PROJECT_DIR$/platforms/core-configuration/kotlin-dsl-tooling-models" /> <option value="$PROJECT_DIR$/platforms/core-configuration/model-core" /> <option value="$PROJECT_DIR$/platforms/core-configuration/model-groovy" /> <option value="$PROJECT_DIR$/platforms/core-configuration/model-reflect" />Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 10:18:20 GMT 2026 - 25.5K bytes - Click Count (0)