Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for 234 (0.04 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CallTest.kt

      }
    
      @Test
      fun repeatedHeaderNames() {
        server.enqueue(
          MockResponse(
            headers =
              headersOf(
                "B",
                "123",
                "B",
                "234",
              ),
          ),
        )
        executeSynchronously("/", "A", "345", "A", "456")
          .assertCode(200)
          .assertHeader("B", "123", "234")
        val recordedRequest = server.takeRequest()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 146.6K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_GETUID ideal-int
    pkg syscall (darwin-arm64), const SYS_GETWGROUPS = 290
    pkg syscall (darwin-arm64), const SYS_GETWGROUPS ideal-int
    pkg syscall (darwin-arm64), const SYS_GETXATTR = 234
    pkg syscall (darwin-arm64), const SYS_GETXATTR ideal-int
    pkg syscall (darwin-arm64), const SYS_IDENTITYSVC = 293
    pkg syscall (darwin-arm64), const SYS_IDENTITYSVC ideal-int
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  3. lib/fips140/v1.0.0.zip

    curve") } fips140.RecordApproved() fipsSelfTestDetermin() drbg := newDRBG(h, priv.d, bits2octets(c, hash), nil) // RFC 6979, Section 3.3 return sign(c, priv, drbg, hash) } // bits2octets as specified in FIPS 186-5, Appendix B.2.4 or RFC 6979, // Section 2.3.4. See RFC 6979, Section 3.5 for the rationale. func bits2octets[P Point[P]](c *Curve[P], hash []byte) []byte { e := bigmod.NewNat() hashToNat(c, e, hash) return e.Bytes(c.N) } func signGeneric[P Point[P]](c *Curve[P], priv *PrivateKey, drbg *hmacDRBG,...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    * Fix OpenAPI documentation of Starlette URL convertors. Specially useful when using `path` convertors, to take a whole path as a parameter, like `/some/url/{p:path}`. PR [#234](https://github.com/tiangolo/fastapi/pull/234) by [@euri10](https://github.com/euri10).
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
  5. doc/go_spec.html

    <p>
    Here is a complete Go package that implements a concurrent prime sieve.
    </p>
    
    <pre>
    package main
    
    import "fmt"
    
    // Send the sequence 2, 3, 4, … to channel 'ch'.
    func generate(ch chan&lt;- int) {
    	for i := 2; ; i++ {
    		ch &lt;- i  // Send 'i' to channel 'ch'.
    	}
    }
    
    // Copy the values from channel 'src' to channel 'dst',
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 06 19:12:15 UTC 2025
    - 286.2K bytes
    - Viewed (0)
  6. RELEASE.md

        [CVE-2021-22898](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22898),
        and
        [CVE-2021-22901](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-22901).
    
    # Release 2.3.4
    
    This release introduces several vulnerability fixes:
    
    *   Fixes a heap out of bounds access in sparse reduction operations
        ([CVE-2021-37635](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-37635))
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Aug 18 20:54:38 UTC 2025
    - 740K bytes
    - Viewed (2)
Back to top