Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for 204 (0.11 sec)

  1. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            body = "This body is not allowed!",
          ),
        )
        assertFailsWith<IOException> {
          getResponse(newRequest("/"))
        }.also { expected ->
          assertThat(expected.message).isEqualTo("HTTP 204 had non-zero Content-Length: 25")
        }
      }
    
      @Test
      fun singleByteReadIsSigned() {
        server.enqueue(
          MockResponse.Builder()
            .body(
              Buffer()
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. fastapi/routing.py

            class Item(BaseModel):
                name: str
                description: str | None = None
    
            app = FastAPI()
            router = APIRouter()
    
            @router.head("/items/", status_code=204)
            def get_items_headers(response: Response):
                response.headers["X-Cat-Dog"] = "Alone in the world"
    
            app.include_router(router)
            ```
            """
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const DLT_PPP_PPPD ideal-int
    pkg syscall (freebsd-arm64), const DLT_PPP_SERIAL = 50
    pkg syscall (freebsd-arm64), const DLT_PPP_SERIAL ideal-int
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIR = 204
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIR ideal-int
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIRECTION = 166
    pkg syscall (freebsd-arm64), const DLT_PPP_WITH_DIRECTION ideal-int
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 508.9K bytes
    - Viewed (0)
  4. fastapi/applications.py

            ## Example
    
            ```python
            from fastapi import FastAPI, Response
    
            app = FastAPI()
    
            @app.head("/items/", status_code=204)
            def get_items_headers(response: Response):
                response.headers["X-Cat-Dog"] = "Alone in the world"
            ```
            """
            return self.router.head(
                path,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 17 04:52:31 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. RELEASE.md

        [CVE-2020-14155](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-14155).
    *   Updates `sqlite3` to `3.44.0` to keep in sync with master branch.
    *   Newer ROCm versions are supported on the 2.1 branch.
    
    # Release 2.0.4
    
    Note that this is the last patch release for the TensorFlow 2.0.x series.
    
    ## Bug Fixes and Other Changes
    
    *   Fixes an access to unitialized memory in Eigen code
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_MSYNC ideal-int
    pkg syscall (darwin-arm64), const SYS_MSYNC_NOCANCEL = 405
    pkg syscall (darwin-arm64), const SYS_MSYNC_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_MUNLOCK = 204
    pkg syscall (darwin-arm64), const SYS_MUNLOCK ideal-int
    pkg syscall (darwin-arm64), const SYS_MUNLOCKALL = 325
    pkg syscall (darwin-arm64), const SYS_MUNLOCKALL ideal-int
    pkg syscall (darwin-arm64), const SYS_MUNMAP = 73
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
Back to top