Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 400 (0.19 sec)

  1. tests/test_include_router_defaults_overrides.py

    callback_router5 = APIRouter()
    
    
    @callback_router5.get("/")
    async def callback5(level5: str):
        pass  # pragma: nocover
    
    
    app = FastAPI(
        dependencies=[Depends(dep0)],
        responses={
            400: {"description": "Client error level 0"},
            500: {"description": "Server error level 0"},
        },
        default_response_class=ResponseLevel0,
        callbacks=callback_router0.routes,
    )
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 358.6K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

    * Fix typo in docs. PR [#411](https://github.com/tiangolo/fastapi/pull/411) by [@bronsen](https://github.com/bronsen).
    * Fix parsing a body type declared with `Union`. PR [#400](https://github.com/tiangolo/fastapi/pull/400) by [@koxudaxi](https://github.com/koxudaxi).
    
    ## 0.34.0
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri May 03 23:25:42 GMT 2024
    - 388.1K bytes
    - Viewed (1)
  3. CHANGELOG/CHANGELOG-1.21.md

    - The `export` query parameter (inconsistently supported by API resources and deprecated in v1.14) is fully removed.  Requests setting this query parameter will now receive a 400 status response. ([#98312](https://github.com/kubernetes/kubernetes/pull/98312), [@deads2k](https://github.com/deads2k)) [SIG API Machinery, Auth and Testing]
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  4. doc/go_spec.html

    'aa'         // illegal: too many characters
    '\k'         // illegal: k is not recognized after a backslash
    '\xa'        // illegal: too few hexadecimal digits
    '\0'         // illegal: too few octal digits
    '\400'       // illegal: octal value over 255
    '\uDFFF'     // illegal: surrogate half
    '\U00110000' // illegal: invalid Unicode code point
    </pre>
    
    
    <h3 id="String_literals">String literals</h3>
    
    <p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_VM_PRESSURE_MONITOR ideal-int
    pkg syscall (darwin-arm64), const SYS_WAIT4 = 7
    pkg syscall (darwin-arm64), const SYS_WAIT4 ideal-int
    pkg syscall (darwin-arm64), const SYS_WAIT4_NOCANCEL = 400
    pkg syscall (darwin-arm64), const SYS_WAIT4_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_WAITEVENT = 232
    pkg syscall (darwin-arm64), const SYS_WAITEVENT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
Back to top