- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 3,214 for requis (0.06 seconds)
-
docs/fr/docs/tutorial/header-param-models.md
{* ../../docs_src/header_param_models/tutorial001_an_py310.py hl[9:14,18] *} **FastAPI** extrait les données de **chaque champ** depuis les **en-têtes** de la requête et vous fournit le modèle Pydantic que vous avez défini. ## Consulter la documentation { #check-the-docs } Vous pouvez voir les en-têtes requis dans l'interface de la documentation à `/docs` : <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 3K bytes - Click Count (0) -
docs/fr/docs/tutorial/body.md
/// note | Remarque **FastAPI** saura que la valeur de `q` n'est pas requise grâce à la valeur par défaut `= None`. L'annotation de type `str | None` n'est pas utilisée par **FastAPI** pour déterminer que la valeur n'est pas requise, il le saura parce qu'elle a une valeur par défaut `= None`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 7.8K bytes - Click Count (0) -
docs/fr/docs/python-types.md
### Module `typing` { #typing-module } Pour certains cas d'utilisation supplémentaires, vous pourriez avoir besoin d'importer certains éléments depuis le module standard `typing`, par exemple lorsque vous voulez déclarer que quelque chose a « n'importe quel type », vous pouvez utiliser `Any` depuis `typing` : ```python from typing import Any def some_function(data: Any): print(data) ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 12.7K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt
this.method = "GET" this.headers = Headers.Builder() } internal constructor(request: Request) { this.url = request.url this.method = request.method this.body = request.body this.tags = request.tags this.headers = request.headers.newBuilder() this.cacheUrlOverride = request.cacheUrlOverride } open fun url(url: HttpUrl): Builder = apply {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Oct 30 13:46:58 GMT 2025 - 14.7K bytes - Click Count (1) -
src/main/java/jcifs/util/transport/Request.java
/** * Interface for transport request messages. * This interface represents requests sent to network transports. */ public interface Request extends Message { /** * Gets the number of credits this request requires. * * @return number of credits this request requires */ int getCreditCost(); /** * Sets the number of request credits. *Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.7K bytes - Click Count (0) -
docs/en/docs/reference/request.md
# `Request` class You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc. Read more about it in the [FastAPI docs about using Request directly](https://fastapi.tiangolo.com/advanced/using-request-directly/) You can import it directly from `fastapi`: ```python from fastapi import Request ``` /// tip
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:41:54 GMT 2026 - 652 bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Request.java
/** * Base interface for service requests in Maven. This interface defines the common contract * for all request types within the Maven service layer, providing access to session context * and request tracing capabilities. * * <p>Each request is associated with a {@link ProtoSession} that contains the configuration * and context necessary for request processing, including: * <ul> * <li>User and system properties for interpolation</li>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Feb 07 00:45:02 GMT 2025 - 4K bytes - Click Count (0) -
docs/en/docs/tutorial/request-forms.md
For example, in one of the ways the OAuth2 specification can be used (called "password flow") it is required to send a `username` and `password` as form fields. The <dfn title="specification">spec</dfn> requires the fields to be exactly named `username` and `password`, and to be sent as form fields, not JSON.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/fr/docs/tutorial/request-form-models.md
```console $ pip install python-multipart ``` /// /// note | Remarque Ceci est pris en charge depuis la version `0.113.0` de FastAPI. 🤓 /// ## Modèles Pydantic pour les formulaires { #pydantic-models-for-forms }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 2.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/Request.java
*/ package jcifs.internal; import jcifs.CIFSContext; /** * Generic interface for typed SMB request messages. * Extends the common request interface with type-safe response handling, * allowing requests to specify their expected response type. * * @author mbechler * @param <T> response type */ public interface Request<T extends CommonServerMessageBlockResponse> extends CommonServerMessageBlockRequest { /**
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.6K bytes - Click Count (0)