- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 2,568 for parm (0.34 sec)
-
docs/es/docs/tutorial/cors.md
* `allow_methods` - Una lista de métodos HTTP que deberían estar permitidos para requests cross-origin. Por defecto es `['GET']`. Puedes usar `['*']` para permitir todos los métodos estándar.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/classes-as-dependencies.md
/// ```Python commons: CommonQueryParams ... ``` //// ...no tiene ningún significado especial para **FastAPI**. **FastAPI** no lo usará para la conversión de datos, validación, etc. (ya que está usando `Depends(CommonQueryParams)` para eso). De hecho, podrías escribir simplemente: //// tab | Python 3.8+ ```Python commons: Annotated[Any, Depends(CommonQueryParams)] ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 6.9K bytes - Viewed (0) -
docs/es/docs/tutorial/security/simple-oauth2.md
Esos detalles son específicos de la implementación. Para OAuth2 son solo strings. /// ## Código para obtener el `username` y `password` Ahora vamos a usar las utilidades proporcionadas por **FastAPI** para manejar esto. ### `OAuth2PasswordRequestForm` Primero, importa `OAuth2PasswordRequestForm`, y úsalo como una dependencia con `Depends` en la *path operation* para `/token`:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type2Message.java
/** * Creates a Type-2 message in response to the given Type-1 message. * * @param tc * context to use * @param type1 * The Type-1 message which this represents a response to. * @param challenge * The challenge from the domain controller/server. * @param target * The authentication target. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
/** * Gets a file authentication entity based on the form and current user info. * * @param form the create form * @param username the current username * @param currentTime the current time * @return optional file authentication entity */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.2K bytes - Viewed (0) -
docs/es/docs/advanced/settings.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 12.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
/** * Create file info from name and attributes * * @param name file name * @param size file size * @param lastModified last modified time * @param isDirectory true if directory * @param attributes file attributes * @param creationTime creation time * @param lastAccessTime last access time */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/pt/docs/advanced/dataclasses.md
Então, mesmo com o código acima que não usa Pydantic explicitamente, o FastAPI está usando Pydantic para converter essas dataclasses padrão para a versão do Pydantic. E claro, ele suporta o mesmo: * validação de dados * serialização de dados * documentação de dados, etc.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
} } /** * Sends a request and manages the response handling. * * @param <T> the response type * @param request the request to send * @param response the response object to populate * @param params additional parameters for the request * @param timeout the maximum time to wait for the response in milliseconds * @return the key associated with the request
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0) -
docs/es/docs/advanced/generate-clients.md
### Función Personalizada para Generar ID Único FastAPI usa un **ID único** para cada *path operation*, se usa para el **operation ID** y también para los nombres de cualquier modelo personalizado necesario, para requests o responses. Puedes personalizar esa función. Toma un `APIRoute` y retorna un string.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jun 17 11:53:56 UTC 2025 - 10.9K bytes - Viewed (0)