- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 139 for charlie (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/fr/docs/tutorial/query-params-str-validations.md
Pour ce faire, importez d’abord : - `Query` depuis `fastapi` - `Annotated` depuis `typing` {* ../../docs_src/query_params_str_validations/tutorial002_an_py310.py hl[1,3] *} /// info FastAPI a ajouté la prise en charge de `Annotated` (et a commencé à le recommander) dans la version 0.95.0. Si vous avez une version plus ancienne, vous obtiendrez des erreurs en essayant d’utiliser `Annotated`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 19K bytes - Click Count (0) -
guava/src/com/google/common/collect/MapMaker.java
* java.util.WeakHashMap}, but note that it compares keys using object identity whereas {@code * WeakHashMap} uses {@link Object#equals}. * * @author Bob Lee * @author Charles Fry * @author Kevin Bourrillion * @since 2.0 */ @J2ktIncompatible @GwtCompatible public final class MapMaker { private static final int DEFAULT_INITIAL_CAPACITY = 16;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 12.8K bytes - Click Count (0) -
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) -
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) -
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) -
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) -
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) -
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` InfoCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 13.4K bytes - Click Count (0) -
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 | AstuceCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 13.9K bytes - Click Count (0) -
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
import java.util.concurrent.ExecutionException; import org.jspecify.annotations.Nullable; /** * LocalCache emulation for GWT. * * @param <K> the base key type * @param <V> the base value type * @author Charles Fry * @author Jon Donovan */ final class LocalCache<K, V> implements ConcurrentMap<K, V> { static final int UNSET_INT = CacheBuilder.UNSET_INT; private final Object lock = new Object();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 12:40:22 GMT 2026 - 21.6K bytes - Click Count (0)