Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for timeout (0.04 seconds)

  1. .bazelrc

    common:rbe_cross_compile_macos_x86 --config=rbe_cross_compile_base
    common:rbe_cross_compile_macos_x86 --bes_upload_mode=nowait_for_upload_complete
    test:rbe_cross_compile_macos_x86 --config=rbe_cross_compile_base
    # Increase the test timeout as tests often take longer on mac.
    test:rbe_cross_compile_macos_x86 --test_timeout=300,450,1200,3600
    # Limit jobs to 100 to avoid running into "out of memory" issues (b/316266643)
    common:rbe_cross_compile_macos_x86 --jobs=100
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Fri Dec 26 23:20:26 GMT 2025
    - 56.8K bytes
    - Click Count (0)
  2. tests/benchmarks/test_general_performance.py

    def sync_model_no_response_model(dep: Annotated[int, Depends(dep_b)]):
        return ItemOut(name="foo", value=123, dep=dep)
    
    
    @app.get("/sync/model-with-response-model", response_model=ItemOut)
    def sync_model_with_response_model(dep: Annotated[int, Depends(dep_b)]):
        return ItemOut(name="foo", value=123, dep=dep)
    
    
    @app.post("/async/validated", response_model=ItemOut)
    async def async_validated(
        item: ItemIn,
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 26 20:40:26 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  3. docs/en/docs/release-notes.md

    * 🐛 Fix FastAPI People GitHub Action: set HTTPX timeout for GraphQL query request. PR [#5222](https://github.com/tiangolo/fastapi/pull/5222) by [@iudeen](https://github.com/iudeen).
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 19:06:15 GMT 2025
    - 586.7K bytes
    - Click Count (0)
Back to Top