- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 147 for usarla (0.63 sec)
-
docs/es/docs/advanced/events.md
{* ../../docs_src/events/tutorial003.py hl[1,13] *} Un **context manager** en Python es algo que puedes usar en una declaración `with`, por ejemplo, `open()` puede ser usado como un context manager: ```Python with open("file.txt") as file: file.read() ``` En versiones recientes de Python, también hay un **async context manager**. Lo usarías con `async with`: ```Python async with lifespan(app): await do_stuff() ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 8.2K bytes - Viewed (0) -
docs/es/docs/alternatives.md
Tener un sistema de routing simple y fácil de usar. /// ### <a href="https://requests.readthedocs.io" class="external-link" target="_blank">Requests</a> **FastAPI** no es en realidad una alternativa a **Requests**. Su ámbito es muy diferente. De hecho, sería común usar Requests *dentro* de una aplicación FastAPI. Aun así, FastAPI se inspiró bastante en Requests.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 25.4K bytes - Viewed (0) -
docs/es/docs/tutorial/first-steps.md
Es el "**path operation decorator**". /// También puedes usar las otras operaciones: * `@app.post()` * `@app.put()` * `@app.delete()` Y los más exóticos: * `@app.options()` * `@app.head()` * `@app.patch()` * `@app.trace()` /// tip Eres libre de usar cada operación (método HTTP) como quieras. **FastAPI** no fuerza ningún significado específico.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 12.2K bytes - Viewed (0) -
android/guava/src/com/google/common/escape/Escapers.java
*/ @CanIgnoreReturnValue public Builder addEscape(char c, String replacement) { checkNotNull(replacement); // This can replace an existing character (the builder is re-usable). replacementMap.put(c, replacement); return this; } /** Returns a new escaper based on the current state of the builder. */ public Escaper build() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
EncryptionNegotiateContext context = new EncryptionNegotiateContext(); assertTrue(context instanceof NegotiateContextResponse); } @Test @DisplayName("Should be usable as both request and response") void testDualInterfaceUsage() { EncryptionNegotiateContext context = new EncryptionNegotiateContext(); NegotiateContextRequest request = context;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableRangeMapTest.java
SerializableTester.reserializeAndAssert(test.keySet()); SerializableTester.reserializeAndAssert(nonEmptyRangeMap); } // TODO(b/172823566): Use mainline testToImmutableRangeMap once CollectorTester is usable to java7 public void testToImmutableRangeMap() { Range<Integer> rangeOne = Range.closedOpen(1, 5); Range<Integer> rangeTwo = Range.openClosed(6, 7); ImmutableRangeMap.Builder<Integer, Integer> zis =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 9.7K bytes - Viewed (0) -
docs/metrics/prometheus/list.md
| `minio_cluster_capacity_raw_total_bytes` | Total capacity online in the cluster. | | `minio_cluster_capacity_usable_free_bytes` | Total free usable capacity online in the cluster. | | `minio_cluster_capacity_usable_total_bytes` | Total usable capacity online in the cluster. | | `minio_cluster_objects_size_distribution` | Distribution of object sizes across a cluster |
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 43.4K bytes - Viewed (0) -
docs/pt/docs/deployment/docker.md
Usando imagens de contêiner pré-prontas é muito fácil **combinar** e usar diferentes ferramentas. Por exemplo, para testar um novo banco de dados. Em muitos casos, você pode usar as **imagens oficiais** precisando somente de variáveis de ambiente para configurá-las. Dessa forma, em muitos casos você pode aprender sobre contêineres e Docker e re-usar essa experiência com diversos componentes e ferramentas.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 37.4K bytes - Viewed (0) -
docs/es/docs/advanced/path-operation-advanced-configuration.md
Añadir un `\f` (un carácter de separación de página escapado) hace que **FastAPI** trunque la salida usada para OpenAPI en este punto. No aparecerá en la documentación, pero otras herramientas (como Sphinx) podrán usar el resto. {* ../../docs_src/path_operation_advanced_configuration/tutorial004.py hl[19:29] *} ## Responses Adicionales
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 7.9K bytes - Viewed (0) -
docs/pt/docs/advanced/openapi-callbacks.md
"paid": true } ``` e esperaria uma resposta daquela *API externa* com um corpo JSON como: ```JSON { "ok": true } ``` /// tip | Dica Perceba como a URL de callback usada contém a URL recebida como um parâmetro de consulta em `callback_url` (`https://www.external.org/events`) e também o `id` da fatura de dentro do corpo JSON (`2expen51ve`). /// ### Adicionar o roteador de callback
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 8.1K bytes - Viewed (0)