Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 184 for charlie (0.04 seconds)

  1. docs/en/docs/tutorial/schema-extra-example.md

    When you do this, the examples will be part of the internal **JSON Schema** for that body data.
    
    Nevertheless, at the <dfn title="2023-08-26">time of writing this</dfn>, Swagger UI, the tool in charge of showing the docs UI, doesn't support showing multiple examples for the data in **JSON Schema**. But read below for a workaround.
    
    ### OpenAPI-specific `examples` { #openapi-specific-examples }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  2. docs/fr/docs/advanced/advanced-dependencies.md

    ### Dépendances avec `yield` et `scope` { #dependencies-with-yield-and-scope }
    
    Dans la version 0.121.0, **FastAPI** a ajouté la prise en charge de `Depends(scope="function")` pour les dépendances avec `yield`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  3. docs/fr/docs/_llm-test.md

    * le moteur de templates
    
    * l’annotation de type
    * l’annotation de type
    
    * le worker du serveur
    * le worker Uvicorn
    * le Worker Gunicorn
    * le processus worker
    * la classe de worker
    * la charge de travail
    
    * le déploiement
    * déployer
    
    * le SDK
    * le kit de développement logiciel
    
    * le `APIRouter`
    * le `requirements.txt`
    * le jeton Bearer
    * le changement majeur incompatible
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/cache/CacheStats.java

     * LoadingCache#get(Object)}, {@link LoadingCache#getUnchecked(Object)}, {@link Cache#get(Object,
     * Callable)}, or {@link LoadingCache#getAll(Iterable)}.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    public final class CacheStats {
      private final long hitCount;
      private final long missCount;
      private final long loadSuccessCount;
      private final long loadExceptionCount;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  5. guava/src/com/google/common/cache/CacheStats.java

     * LoadingCache#get(Object)}, {@link LoadingCache#getUnchecked(Object)}, {@link Cache#get(Object,
     * Callable)}, or {@link LoadingCache#getAll(Iterable)}.
     *
     * @author Charles Fry
     * @since 10.0
     */
    @GwtCompatible
    public final class CacheStats {
      private final long hitCount;
      private final long missCount;
      private final long loadSuccessCount;
      private final long loadExceptionCount;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Jul 08 18:32:10 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/handling-errors.md

    ///
    
    ## Override the default exception handlers { #override-the-default-exception-handlers }
    
    **FastAPI** has some default exception handlers.
    
    These handlers are in charge of returning the default JSON responses when you `raise` an `HTTPException` and when the request has invalid data.
    
    You can override these exception handlers with your own.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  7. docs/es/docs/tutorial/response-model.md

    Con esto, obtenemos soporte de las herramientas, de los editores y mypy ya que este código es correcto en términos de tipos, pero también obtenemos el filtrado de datos de FastAPI.
    
    ¿Cómo funciona esto? Vamos a echarle un vistazo. 🤓
    
    ### Anotaciones de Tipos y Herramientas { #type-annotations-and-tooling }
    
    Primero vamos a ver cómo los editores, mypy y otras herramientas verían esto.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  8. docs/fr/docs/python-types.md

    # Introduction aux types Python { #python-types-intro }
    
    Python prend en charge des « annotations de type » (aussi appelées « type hints ») facultatives.
    
    Ces **« annotations de type »** sont une syntaxe spéciale qui permet de déclarer le <dfn title="par exemple : str, int, float, bool">type</dfn> d'une variable.
    
    En déclarant les types de vos variables, les éditeurs et outils peuvent vous offrir un meilleur support.
    
    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)
  9. docs/en/docs/tutorial/first-steps.md

    #### Define a *path operation decorator* { #define-a-path-operation-decorator }
    
    {* ../../docs_src/first_steps/tutorial001_py310.py hl[6] *}
    
    The `@app.get("/")` tells **FastAPI** that the function right below is in charge of handling requests that go to:
    
    * the path `/`
    * using a <dfn title="an HTTP GET method"><code>get</code> operation</dfn>
    
    /// info | `@decorator` Info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/dependencies/dependencies-with-yield.md

    # Utiliser des dépendances avec `yield` { #dependencies-with-yield }
    
    FastAPI prend en charge des dépendances qui effectuent des <dfn title='parfois aussi appelées « exit code », « cleanup code », « teardown code », « closing code », « context manager exit code », etc.'>étapes supplémentaires après l'exécution</dfn>.
    
    Pour cela, utilisez `yield` au lieu de `return`, et écrivez les étapes supplémentaires (code) après.
    
    /// tip | Astuce
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 13.9K bytes
    - Click Count (0)
Back to Top