Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 97 for carries (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/fr/docs/tutorial/request-files.md

    ///
    
    /// note | Détails techniques Starlette
    
    L'`UploadFile` de **FastAPI** hérite directement de l'`UploadFile` de **Starlette**, mais ajoute certaines parties nécessaires pour le rendre compatible avec **Pydantic** et les autres parties de FastAPI.
    
    ///
    
    ## Qu'est-ce que les « données de formulaire » { #what-is-form-data }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.2K bytes
    - Click Count (0)
  2. internal/http/transports.go

    	// if tlsConfig != nil {
    	// 	trhttp2, _ := http2.ConfigureTransports(tr)
    	// 	if trhttp2 != nil {
    	// 		// ReadIdleTimeout is the timeout after which a health check using ping
    	// 		// frame will be carried out if no frame is received on the
    	// 		// connection. 5 minutes is sufficient time for any idle connection.
    	// 		trhttp2.ReadIdleTimeout = 5 * time.Minute
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 08 17:51:53 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  3. docs/fr/docs/advanced/using-request-directly.md

    # Utiliser Request directement { #using-the-request-directly }
    
    Jusqu'à présent, vous avez déclaré les parties de la requête dont vous avez besoin, avec leurs types.
    
    En récupérant des données depuis :
    
    * Le chemin, sous forme de paramètres.
    * En-têtes.
    * Cookies.
    * etc.
    
    Et ce faisant, **FastAPI** valide ces données, les convertit et génère automatiquement la documentation de votre API.
    
    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)
  4. guava-testlib/src/com/google/common/testing/SloppyTearDown.java

    /**
     * Simple utility for when you want to create a {@link TearDown} that may throw an exception but
     * should not fail a test when it does. (The behavior of a {@code TearDown} that throws an exception
     * varies; see its documentation for details.) Use it just like a {@code TearDown}, except override
     * {@link #sloppyTearDown()} instead.
     *
     * @author Luiz-Otavio Zorzella
     * @since 10.0
     */
    @GwtCompatible
    @NullMarked
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 1.6K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/openapi-callbacks.md

    ### L’expression du chemin de callback { #the-callback-path-expression }
    
    Le *chemin* du callback peut contenir une [expression OpenAPI 3](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#key-expression) qui peut inclure des parties de la requête originale envoyée à *votre API*.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  6. docs/fr/docs/advanced/response-directly.md

    ///
    
    ## Renvoyer une `Response` personnalisée { #returning-a-custom-response }
    
    L'exemple ci-dessus montre toutes les parties dont vous avez besoin, mais il n'est pas encore très utile, car vous auriez pu renvoyer l'`item` directement, et **FastAPI** l'aurait placé dans une `JSONResponse` pour vous, en le convertissant en `dict`, etc. Tout cela par défaut.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  7. architecture/runtimes.md

    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    - Some base services that are available to code hosted by the runtime. This varies by runtime.
    - Additional constraints. For example, the CLI client runtimes limit the libraries that are available to the code in that runtime, for performance reasons. 
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu May 02 06:42:46 GMT 2024
    - 2.3K bytes
    - Click Count (0)
  8. docs/fr/docs/tutorial/testing.md

    
    … et avoir le code des tests comme précédemment.
    
    ## Tester : exemple étendu { #testing-extended-example }
    
    Étendons maintenant cet exemple et ajoutons plus de détails pour voir comment tester différentes parties.
    
    ### Fichier d’application **FastAPI** étendu { #extended-fastapi-app-file }
    
    Continuons avec la même structure de fichiers qu’auparavant :
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   ├── main.py
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  9. android/guava-tests/test/com/google/common/graph/ValueGraphTest.java

        ExecutorService executor = newFixedThreadPool(threadCount);
        CyclicBarrier barrier = new CyclicBarrier(threadCount);
        ImmutableList.Builder<Future<?>> futures = ImmutableList.builder();
        for (int i = 0; i < threadCount; i++) {
          futures.add(
              executor.submit(
                  () -> {
                    barrier.await();
                    Integer first = graph.nodes().iterator().next();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

       * There are a number of ways to solve this, none of which are very pretty, and it is currently
       * believed to be a purely theoretical problem (since the other actions should supply sufficient
       * write-barriers).
       */
    
      @LazyInit private @Nullable ListenableFuture<V> delegateRef;
      @LazyInit private @Nullable ScheduledFuture<?> timer;
    
      private TimeoutFuture(ListenableFuture<V> delegate) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 8K bytes
    - Click Count (0)
Back to Top