- Sort Score
- Result 10 results
- Languages All
Results 511 - 520 of 908 for modAlt (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/plugin/version/PluginVersionRequest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.version; import java.util.List; import org.apache.maven.model.Model; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.RemoteRepository; /** * Collects settings required to resolve the version for a plugin. * * @since 3.0 */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.model.building; import java.io.File; import java.net.URI; import java.nio.file.Files; import java.nio.file.Path; import org.apache.maven.building.FileSource; /** * Wraps an ordinary {@link File} as a model source. * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Apr 14 13:42:17 UTC 2025 - 2.8K bytes - Viewed (0) -
docs/en/docs/tutorial/body-multiple-params.md
/// ## Embed a single body parameter { #embed-a-single-body-parameter } Let's say you only have a single `item` body parameter from a Pydantic model `Item`. By default, **FastAPI** will then expect its body directly. But if you want it to expect a JSON with a key `item` and inside of it the model contents, as it does when you declare extra body parameters, you can use the special `Body` parameter `embed`: ```PythonRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 12:58:04 UTC 2025 - 4.9K bytes - Viewed (0) -
doc/godebug.md
### Go 1.24 Go 1.24 added a new `fips140` setting that controls whether the Go Cryptographic Module operates in FIPS 140-3 mode. The possible values are: - "off": no special support for FIPS 140-3 mode. This is the default. - "on": the Go Cryptographic Module operates in FIPS 140-3 mode. - "only": like "on", but cryptographic algorithms not approved by FIPS 140-3 return an error or panic.
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Dec 03 00:18:09 UTC 2025 - 24.7K bytes - Viewed (0) -
docs/es/docs/advanced/security/oauth2-scopes.md
Verificamos que obtenemos un `username`, y extraemos los scopes. Y luego validamos esos datos con el modelo de Pydantic (capturando la excepción `ValidationError`), y si obtenemos un error leyendo el token JWT o validando los datos con Pydantic, lanzamos la `HTTPException` que creamos antes. Para eso, actualizamos el modelo de Pydantic `TokenData` con una nueva propiedad `scopes`.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:15:01 UTC 2025 - 14.2K bytes - Viewed (0) -
docs/pt/docs/advanced/response-directly.md
# Retornando uma Resposta Diretamente { #return-a-response-directly } Quando você cria uma *operação de rota* no **FastAPI** você pode retornar qualquer dado nela: um dicionário (`dict`), uma lista (`list`), um modelo do Pydantic ou do seu banco de dados, etc. Por padrão, o **FastAPI** irá converter automaticamente o valor do retorno para JSON utilizando o `jsonable_encoder` explicado em [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/PluginPrefixRequest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin.prefix; import java.util.List; import org.apache.maven.model.Model; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.RemoteRepository; /** * Collects settings required to resolve a plugin prefix. * * @since 3.0 */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.6K bytes - Viewed (0) -
docs/uk/docs/tutorial/encoder.md
Тим самим способом ця база даних не прийматиме об'єкт типу Pydantic model (об'єкт з атрибутами), а лише `dict`. Ви можете використовувати `jsonable_encoder` для цього. Вона приймає об'єкт, такий як Pydantic model, і повертає його версію, сумісну з JSON: {* ../../docs_src/encoder/tutorial001_py310.py hl[4,21] *} У цьому прикладі вона конвертує Pydantic model у `dict`, а `datetime` у `str`.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.5K bytes - Viewed (0) -
tests/test_openapi_model_description_trim_on_formfeed.py
from fastapi import FastAPI from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() class MyModel(BaseModel): """ A model with a form feed character in the title. \f Text after form feed character. """ @app.get("/foo") def foo(v: MyModel): # pragma: no cover pass client = TestClient(app) def test_openapi():
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Jun 17 07:46:27 UTC 2025 - 660 bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java
import org.apache.maven.api.Packaging; import org.apache.maven.api.Type; import org.apache.maven.api.model.Dependency; import org.apache.maven.api.model.InputLocation; import org.apache.maven.api.model.Plugin; import org.apache.maven.api.model.PluginContainer; import org.apache.maven.api.model.PluginExecution; import org.apache.maven.api.services.Lookup; import org.apache.maven.api.services.PackagingRegistry;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jan 24 17:29:44 UTC 2025 - 7.8K bytes - Viewed (0)