Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for 65 (0.16 sec)

  1. guava-tests/test/com/google/common/math/MathTesting.java

        bigValues.add(BigInteger.valueOf(Long.MAX_VALUE).add(ONE));
        // Now add values near 2^N for lots of values of N.
        for (int exponent :
            asList(
                64,
                65,
                71,
                72,
                73,
                79,
                80,
                81,
                255,
                256,
                257,
                511,
                512,
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 11.2K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/async-sql-encode-databases.md

    That documents (and validates, serializes, filters) the output data, as a `list` of `Note`s.
    
    ## Create notes
    
    Create the *path operation function* to create notes:
    
    ```Python hl_lines="61-65"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    !!! info
        In Pydantic v1 the method was called `.dict()`, it was deprecated (but still supported) in Pydantic v2, and renamed to `.model_dump()`.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/idn/IdnaMappingTableTest.kt

      @Test fun validateCompactTableInvariants() {
        // Less than 16,834 bytes, because we binary search on a 14-bit index.
        assertThat(compactTable.sections.length).isLessThan(1 shl 14)
    
        // Less than 65,536 bytes, because we binary search on a 14-bit index with a stride of 4 bytes.
        assertThat(compactTable.ranges.length).isLessThan((1 shl 14) * 4)
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/FormBodyTest.kt

        assertThat(formEncode(61)).isEqualTo("%3D")
        assertThat(formEncode(62)).isEqualTo("%3E")
        assertThat(formEncode(63)).isEqualTo("%3F")
        assertThat(formEncode(64)).isEqualTo("%40")
        assertThat(formEncode(65)).isEqualTo("A")
        assertThat(formEncode(90)).isEqualTo("Z")
        assertThat(formEncode(91)).isEqualTo("%5B")
        assertThat(formEncode(92)).isEqualTo("%5C")
        assertThat(formEncode(93)).isEqualTo("%5D")
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/avx512enc/avx512f.s

    	VPROLD $65, Z21, K7, Z14                           // 62b10d4f72cd41
    	VPROLD $65, Z8, K7, Z14                            // 62d10d4f72c841
    	VPROLD $65, 7(SI)(DI*8), K7, Z14                   // 62f10d4f728cfe0700000041
    	VPROLD $65, -15(R14), K7, Z14                      // 62d10d4f728ef1ffffff41
    	VPROLD $65, Z21, K7, Z15                           // 62b1054f72cd41
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 410.5K bytes
    - Viewed (0)
  6. api/go1.10.txt

    pkg debug/elf, const R_ARM_LDC_SB_G2 = 83
    pkg debug/elf, const R_ARM_LDC_SB_G2 R_ARM
    pkg debug/elf, const R_ARM_LDRS_PC_G0 = 64
    pkg debug/elf, const R_ARM_LDRS_PC_G0 R_ARM
    pkg debug/elf, const R_ARM_LDRS_PC_G1 = 65
    pkg debug/elf, const R_ARM_LDRS_PC_G1 R_ARM
    pkg debug/elf, const R_ARM_LDRS_PC_G2 = 66
    pkg debug/elf, const R_ARM_LDRS_PC_G2 R_ARM
    pkg debug/elf, const R_ARM_LDRS_SB_G0 = 78
    pkg debug/elf, const R_ARM_LDRS_SB_G0 R_ARM
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/MathTesting.java

        bigValues.add(BigInteger.valueOf(Long.MAX_VALUE).add(ONE));
        // Now add values near 2^N for lots of values of N.
        for (int exponent :
            asList(
                64,
                65,
                71,
                72,
                73,
                79,
                80,
                81,
                255,
                256,
                257,
                511,
                512,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 11.2K bytes
    - Viewed (0)
  8. docs/zh/docs/advanced/security/oauth2-scopes.md

    {!../../../docs_src/security/tutorial005.py!}
    ```
    
    下面,我们逐步说明修改的代码内容。
    
    ## OAuth2 安全方案
    
    第一个修改的地方是,使用两个作用域 `me` 和 `items ` 声明 OAuth2 安全方案。
    
    `scopes` 参数接收**字典**,键是作用域、值是作用域的描述:
    
    ```Python hl_lines="62-65"
    {!../../../docs_src/security/tutorial005.py!}
    ```
    
    因为声明了作用域,所以登录或授权时会在 API 文档中显示。
    
    此处,选择给予访问权限的作用域: `me` 和 `items`。
    
    这也是使用脸书、谷歌、GitHub 登录时的授权机制。
    
    <img src="/img/tutorial/security/image11.png">
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 22:43:35 GMT 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/bytes/bytes_test.go

    	}
    }
    
    // test count of a single byte across page offsets
    func TestCountByte(t *testing.T) {
    	b := make([]byte, 5015) // bigger than a page
    	windows := []int{1, 2, 3, 4, 15, 16, 17, 31, 32, 33, 63, 64, 65, 128}
    	testCountWindow := func(i, window int) {
    		for j := 0; j < window; j++ {
    			b[i+j] = byte(100)
    			p := Count(b[i:i+window], []byte{100})
    			if p != j+1 {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  10. cmd/apierrorcode_string.go

    	_ = x[ErrReplicationNoExistingObjects-60]
    	_ = x[ErrReplicationValidationError-61]
    	_ = x[ErrReplicationPermissionCheckError-62]
    	_ = x[ErrObjectRestoreAlreadyInProgress-63]
    	_ = x[ErrNoSuchKey-64]
    	_ = x[ErrNoSuchUpload-65]
    	_ = x[ErrInvalidVersionID-66]
    	_ = x[ErrNoSuchVersion-67]
    	_ = x[ErrNotImplemented-68]
    	_ = x[ErrPreconditionFailed-69]
    	_ = x[ErrRequestTimeTooSkewed-70]
    	_ = x[ErrSignatureDoesNotMatch-71]
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
Back to top