Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 160 for nonces (0.07 seconds)

  1. docs/fr/docs/tutorial/server-sent-events.md

    FastAPI met en œuvre certaines bonnes pratiques SSE prêtes à l’emploi.
    
    - Envoyer un commentaire **« keep alive » `ping`** toutes les 15 secondes quand aucun message n’a été émis, pour éviter que certains proxys ne ferment la connexion, comme suggéré dans la [Spécification HTML : Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html#authoring-notes).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

             * the case of the Samsung bug, and we do that by breaking AtomicReferenceFieldUpdater.
             * Breaking AtomicReferenceFieldUpdater not only forces AggregateFutureState to fall back to
             * another implementation but also forces AbstractFutureState to be able to do the
             * same—hence the try-catch here.
             *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 33.2K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/body-multiple-params.md

    {* ../../docs_src/body_multiple_params/tutorial001_an_py310.py hl[18:20] *}
    
    /// note | Remarque
    
    Notez que, dans ce cas, l'élément `item` récupéré depuis le corps de la requête est optionnel. Comme sa valeur par défaut est `None`.
    
    ///
    
    ## Paramètres multiples du corps de la requête { #multiple-body-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  4. docs/es/docs/help-fastapi.md

    * Hacer una **pregunta** o preguntar sobre un **problema**.
    * Sugerir una nueva **funcionalidad**.
    
    **Nota**: si lo haces, entonces te voy a pedir que también ayudes a otros. 😉
    
    ## Revisa Pull Requests { #review-pull-requests }
    
    Puedes ayudarme a revisar pull requests de otros.
    
    De nuevo, por favor, haz tu mejor esfuerzo por ser amable. 🤗
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  5. docs/es/docs/tutorial/extra-models.md

    También puedes declarar un response usando un `dict` arbitrario plano, declarando solo el tipo de las claves y valores, sin usar un modelo Pydantic.
    
    Esto es útil si no conoces los nombres de los campos/atributos válidos (que serían necesarios para un modelo Pydantic) de antemano.
    
    En este caso, puedes usar `dict`:
    
    {* ../../docs_src/extra_models/tutorial005_py310.py hl[6] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/ConnectionReuseTest.kt

       * the corresponding stream allocation. This test keeps those response bodies alive and reads
       * them after the redirect has completed. This forces a connection to not be reused where it would
       * be otherwise.
       *
       *
       * This test leaks a response body by not closing it.
       *
       * https://github.com/square/okhttp/issues/2409
       */
      @Test
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 12.3K bytes
    - Click Count (1)
  7. docs/fr/docs/tutorial/body-nested-models.md

    ///
    
    ## Récapitulatif { #recap }
    
    Avec FastAPI, vous bénéficiez de la flexibilité maximale fournie par les modèles Pydantic, tout en gardant votre code simple, concis et élégant.
    
    Mais avec tous les avantages :
    
    - Prise en charge par l'éditeur (autocomplétion partout !)
    - Conversion des données (a.k.a. parsing / sérialisation)
    - Validation des données
    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)
  8. guava-testlib/src/com/google/common/collect/testing/AbstractMapTester.java

          }
        }
    
        throw new IllegalArgumentException(
            Platform.format("key %s not found in entries %s", newEntry.getKey(), expected));
      }
    
      /**
       * Wrapper for {@link Map#get(Object)} that forces the caller to pass in a key of the same type as
       * the map. Besides being slightly shorter than code that uses {@link #getMap()}, it also ensures
       * that callers don't pass an {@link Entry} by mistake.
       */
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Jan 18 02:54:30 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  9. docs/es/docs/fastapi-cli.md

    ```python
    from main import app
    ```
    
    Si tu código estuviera estructurado así:
    
    ```
    .
    ├── backend
    │   ├── main.py
    │   ├── __init__.py
    ```
    
    Entonces establecerías el `entrypoint` como:
    
    ```toml
    [tool.fastapi]
    entrypoint = "backend.main:app"
    ```
    
    lo cual sería equivalente a:
    
    ```python
    from backend.main import app
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  10. docs/es/docs/advanced/openapi-callbacks.md

    En este caso, es el `str`:
    
    ```Python
    "{$callback_url}/invoices/{$request.body.id}"
    ```
    
    Entonces, si el usuario de tu API (el desarrollador externo) envía un request a *tu API* a:
    
    ```
    https://yourapi.com/invoices/?callback_url=https://www.external.org/events
    ```
    
    con un JSON body de:
    
    ```JSON
    {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 8K bytes
    - Click Count (0)
Back to Top