Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for 07 (0.66 sec)

  1. docs/en/docs/img/async/concurrent-burgers/concurrent-burgers-07.png

    concurrent-burgers-07.png...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Aug 17 10:48:05 UTC 2022
    - 166K bytes
    - Viewed (0)
  2. docs/iam/access-management-plugin.md

          ],
          "SourceIp": [
            "127.0.0.1"
          ],
          "User-Agent": [
            "MinIO (linux; amd64) minio-go/v7.0.24 mc/DEVELOPMENT.2022-04-20T23-07-53Z"
          ],
          "UserAgent": [
            "MinIO (linux; amd64) minio-go/v7.0.24 mc/DEVELOPMENT.2022-04-20T23-07-53Z"
          ],
          "X-Amz-Content-Sha256": [
            "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
          ],
          "X-Amz-Date": [
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Dec 13 22:28:48 UTC 2022
    - 4.4K bytes
    - Viewed (1)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BitString.kt

    package okhttp3.tls.internal.der
    
    import okio.ByteString
    
    /**
     * Like a [ByteString], but whose bits are not necessarily a strict multiple of 8.
     */
    internal data class BitString(
      val byteString: ByteString,
      /** 0-7 unused bits in the last byte. */
      val unusedBitsCount: Int,
    ) {
      // Avoid Long.hashCode(long) which isn't available on Android 5.
      override fun hashCode(): Int {
        var result = 0
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/SmbComSetInformationResponseTest.java

            @DisplayName("Returns 0 with null array")
            void nullArray() {
                assertEquals(0, response.writeBytesWireFormat(null, 0));
            }
    
            @ParameterizedTest
            @ValueSource(ints = { 0, 7 })
            @DisplayName("Returns 0 with valid array and various indices")
            void nonNullArray(int idx) {
                byte[] arr = new byte[10];
                assertEquals(0, response.writeBytesWireFormat(arr, idx));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/avx512enc/avx512dq.s

    	VINSERTF64X2 $0, 7(AX)(CX*1), Y30, K4, Y30         // 62638d2418b4080700000000
    	VINSERTF64X2 $0, X3, Y16, K4, Y26                  // 6263fd2418d300
    	VINSERTF64X2 $0, X26, Y16, K4, Y26                 // 6203fd2418d200
    	VINSERTF64X2 $0, X23, Y16, K4, Y26                 // 6223fd2418d700
    	VINSERTF64X2 $0, 7(AX)(CX*4), Y16, K4, Y26         // 6263fd241894880700000000
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 194.8K bytes
    - Viewed (0)
  6. .github/workflows/multipart/migrate.sh

    }
    
    cleanup
    
    if [ ! -f ./mc ]; then
    	wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    		chmod +x mc
    fi
    
    export RELEASE=RELEASE.2023-08-29T23-07-35Z
    
    docker-compose -f docker-compose-site1.yaml up -d
    docker-compose -f docker-compose-site2.yaml up -d
    
    sleep 30s
    
    ./mc alias set site1 http://site1-nginx:9001 minioadmin minioadmin --api s3v4
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vbmi2.s

    	VPSHRDD $0, 7(SI)(DI*1), X5, K2, X9                // 6273550a738c3e0700000000
    	VPSHRDD $0, 15(DX)(BX*8), X5, K2, X9               // 6273550a738cda0f00000000
    	VPSHRDD $0, X21, X31, K2, X9                       // 6233050273cd00
    	VPSHRDD $0, X1, X31, K2, X9                        // 6273050273c900
    	VPSHRDD $0, X11, X31, K2, X9                       // 6253050273cb00
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 22 14:57:15 UTC 2018
    - 97.1K bytes
    - Viewed (0)
  8. docs/security/tls_configuration_history.md

    ##### MODERN_TLS versions
    
    * **NEW:** TLSv1.3
    * TLSv1.2
    * TLSv1.1
    * TLSv1
    
    ##### COMPATIBLE_TLS versions
    
    * TLSv1
    
    [OkHttp 3.11][OkHttp311]
    ------------------------
    
    _2018-07-12_
    
    Added a new extra strict RESTRICTED_TLS configuration inspired by [Google Cloud’s similar policy][googlecloud_ssl_policy]. It is appropriate when both the host platform
    (JVM/Conscrypt/Android) and target webserver are current.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/Crypto.java

         * @return 8-byte DES key with parity
         */
        static byte[] des7to8(final byte[] key) {
            final byte key8[] = new byte[8];
            key8[0] = (byte) (key[0] & 0xFE);
            key8[1] = (byte) (key[0] << 7 | (key[1] & 0xFF) >>> 1);
            key8[2] = (byte) (key[1] << 6 | (key[2] & 0xFF) >>> 2);
            key8[3] = (byte) (key[2] << 5 | (key[3] & 0xFF) >>> 3);
            key8[4] = (byte) (key[3] << 4 | (key[4] & 0xFF) >>> 4);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. docs/hotfixes.md

    ```
    commit 99bf4d0c429f04dbd013ba98840d07b759ae1702 (tag: RELEASE.2019-06-15T23-07-18Z)
    Author: Harshavardhana <******@****.***>
    Date:   Sat Jun 15 11:27:17 2019 -0700
    
        [security] Match ${aws:username} exactly instead of prefix match (#7791)
    
        This PR fixes a security issue where an IAM user based
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top