Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for 65 (0.35 sec)

  1. android/guava/src/com/google/common/collect/RegularImmutableMap.java

      private static final int BYTE_MASK = (1 << Byte.SIZE) - 1; // 2^8 - 1 = 255
      private static final int SHORT_MASK = (1 << Short.SIZE) - 1; // 2^16 - 1 = 65_535
    
      @SuppressWarnings("unchecked")
      static final ImmutableMap<Object, Object> EMPTY =
          new RegularImmutableMap<>(null, new Object[0], 0);
    
      /*
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 15 22:32:14 GMT 2024
    - 22.7K bytes
    - Viewed (0)
  2. docs/de/docs/advanced/security/oauth2-scopes.md

    Der `scopes`-Parameter erhält ein `dict` mit jedem Scope als Schlüssel und dessen Beschreibung als Wert:
    
    === "Python 3.10+"
    
        ```Python hl_lines="62-65"
        {!> ../../../docs_src/security/tutorial005_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="62-65"
        {!> ../../../docs_src/security/tutorial005_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="63-66"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:26:08 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  3. internal/etag/etag_test.go

    		ETag:   ETag{144, 64, 44, 120, 210, 220, 205, 222, 225, 233, 232, 98, 34, 206, 44, 99, 97, 103, 95, 53, 41, 210, 96, 0, 174, 46, 144, 15, 242, 22, 179, 203, 89, 225, 48, 224, 146, 216, 162, 152, 30, 119, 111, 77, 11, 214, 9, 65},
    	},
    
    	{String: `"3b83ef96387f14655fc854ddc3c6bd57`, ShouldFail: true},                                                                  // 6
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 18 17:00:54 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

            int start = bufferIndex;
    
            int structureSize = SMBUtil.readInt2(buffer, bufferIndex);
            if ( structureSize != 65 ) {
                throw new SMBProtocolDecodingException("Structure size is not 65");
            }
    
            this.securityMode = SMBUtil.readInt2(buffer, bufferIndex + 2);
            bufferIndex += 4;
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Mar 22 10:09:46 GMT 2020
    - 17.6K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/security/oauth2-scopes.md

    The `scopes` parameter receives a `dict` with each scope as a key and the description as the value:
    
    === "Python 3.10+"
    
        ```Python hl_lines="62-65"
        {!> ../../../docs_src/security/tutorial005_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="62-65"
        {!> ../../../docs_src/security/tutorial005_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="63-66"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 21:21:35 GMT 2024
    - 20.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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