Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 1,038 for Async (0.05 seconds)

  1. docs/pt/docs/advanced/async-tests.md

    # Testes Assíncronos { #async-tests }
    
    Você já viu como testar as suas aplicações **FastAPI** utilizando o `TestClient` que é fornecido. Até agora, você viu apenas como escrever testes síncronos, sem utilizar funções `async`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. docs/tr/docs/advanced/async-tests.md

    # Async Testler { #async-tests }
    
    Sağlanan `TestClient` ile **FastAPI** uygulamalarınızı nasıl test edeceğinizi zaten gördünüz. Şimdiye kadar yalnızca senkron testler yazdık, yani `async` fonksiyonlar kullanmadan.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  3. docs/es/docs/advanced/async-tests.md

    # Tests Asíncronos { #async-tests }
    
    Ya has visto cómo probar tus aplicaciones de **FastAPI** usando el `TestClient` proporcionado. Hasta ahora, solo has visto cómo escribir tests sincrónicos, sin usar funciones `async`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4K bytes
    - Click Count (0)
  4. docs/fr/docs/advanced/async-tests.md

    # Tests asynchrones { #async-tests }
    
    Vous avez déjà vu comment tester vos applications **FastAPI** en utilisant le `TestClient` fourni. Jusqu'à présent, vous n'avez vu que comment écrire des tests synchrones, sans utiliser de fonctions `async`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  5. tests/benchmarks/test_general_performance.py

    @app.get("/async/dict-no-response-model")
    async def async_dict_no_response_model():
        return {"name": "foo", "value": 123}
    
    
    @app.get("/async/dict-with-response-model", response_model=ItemOut)
    async def async_dict_with_response_model(
        dep: Annotated[int, Depends(dep_b)],
    ):
        return {"name": "foo", "value": 123, "dep": dep}
    
    
    @app.get("/async/model-no-response-model")
    async def async_model_no_response_model(
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Dec 26 20:40:26 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  6. tests/test_dependency_wrapped.py

            "/class-instance-async-wrapped-gen-dependency/",
            "/class-instance-async-wrapped-gen-async-dependency/",
            "/wrapped-class-dependency/",
            "/wrapped-endpoint/",
            "/async-wrapped-endpoint/",
            "/wrapped-dependency-async-wrapper/",
            "/wrapped-gen-dependency-async-wrapper/",
            "/async-wrapped-dependency-async-wrapper/",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  7. tests/test_dependency_class.py

    @app.get("/callable-gen-dependency")
    async def get_callable_gen_dependency(value: str = Depends(callable_gen_dependency)):
        return value
    
    
    @app.get("/async-callable-dependency")
    async def get_async_callable_dependency(
        value: str = Depends(async_callable_dependency),
    ):
        return value
    
    
    @app.get("/async-callable-gen-dependency")
    async def get_async_callable_gen_dependency(
        value: str = Depends(async_callable_gen_dependency),
    ):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  8. tests/test_dependency_contextmanager.py

    class OtherDependencyError(Exception):
        pass
    
    
    async def asyncgen_state(state: dict[str, str] = Depends(get_state)):
        state["/async"] = "asyncgen started"
        yield state["/async"]
        state["/async"] = "asyncgen completed"
    
    
    def generator_state(state: dict[str, str] = Depends(get_state)):
        state["/sync"] = "generator started"
        yield state["/sync"]
        state["/sync"] = "generator completed"
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  9. tests/test_dependency_partial.py

        return value
    
    
    @app.get("/partial-async-callable-dependency")
    async def get_partial_async_callable_dependency(
        value: Annotated[
            str,
            Depends(
                partial(async_callable_dependency, "partial-async-callable-dependency")
            ),
        ],
    ) -> str:
        return value
    
    
    @app.get("/partial-async-callable-gen-dependency")
    async def get_partial_async_callable_gen_dependency(
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 6.3K bytes
    - Click Count (0)
  10. tests/test_stream_cancellation.py

    @app.get("/stream-raw", response_class=StreamingResponse)
    async def stream_raw() -> AsyncIterable[str]:
        """Async generator with no internal await - would hang without checkpoint."""
        i = 0
        while True:
            yield f"item {i}\n"
            i += 1
    
    
    @app.get("/stream-jsonl")
    async def stream_jsonl() -> AsyncIterable[int]:
        """JSONL async generator with no internal await."""
        i = 0
        while True:
            yield i
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 18:56:47 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top