Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 155 for 14 (0.01 sec)

  1. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.open(0, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.openClosed(0, 3), integers()).range(CLOSED, OPEN));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.closedOpen(1, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.open(0, 4), integers()).range(CLOSED, OPEN));
        assertEquals(
            Range.closedOpen(1, 4),
            ContiguousSet.create(Range.openClosed(0, 3), integers()).range(CLOSED, OPEN));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java

            // Verify size (14 bytes header + 0 bytes for empty name)
            assertEquals(14, request.size());
    
            // Test encoding
            byte[] buffer = new byte[50];
            int bytesEncoded = request.encode(buffer, 0);
    
            // Verify
            assertEquals(14, bytesEncoded);
            assertEquals(0, SMBUtil.readInt4(buffer, 8)); // Name length should be 0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  4. .github/workflows/update-rbe.yml

            map sigbuild-r2.14-python3.9 2.14-python3.9
            map sigbuild-r2.14-python3.10 2.14-python3.10
            map sigbuild-r2.14-python3.11 2.14-python3.11
            # TF 2.14 + Clang (containers are the same, but env vars in configs.bzl are different)
            map sigbuild-r2.14-clang 2.14-python3.9
            map sigbuild-r2.14-clang-python3.9 2.14-python3.9
            map sigbuild-r2.14-clang-python3.10 2.14-python3.10
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Sep 01 15:40:11 UTC 2025
    - 7.2K bytes
    - Viewed (1)
  5. ci/official/containers/ml_build_arm64/setup.python.sh

      CC=clang-18 CXX=clang++-18 ./configure --prefix /python314-0rc1 --with-ensurepip=install
      make -j$(nproc)
      make install -j$(nproc)
      ln -s /python314-0rc1/bin/python3 /usr/bin/python3.14
      popd
    elif [[ ${VERSION} == "python3.14-nogil" ]]; then
      if [[ ! -d Python-3.14.0rc1 ]]; then
        apt update && apt install -y libssl-dev zlib1g-dev libbz2-dev libreadline-dev libncurses5-dev libffi-dev liblzma-dev
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Aug 01 19:14:43 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmUtil.java

            final byte[] p14 = new byte[14];
            final byte[] p21 = new byte[21];
            final byte[] p24 = new byte[24];
            final byte[] passwordBytes = Strings.getOEMBytes(password, tc.getConfig());
            int passwordLength = passwordBytes.length;
    
            // Only encrypt the first 14 bytes of the password for Pre 0.12 NT LM
            if (passwordLength > 14) {
                passwordLength = 14;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. docs/multi-tenancy/README.md

    Use the following commands to host 3 tenants on multiple drives:
    
    ```sh
    minio server --address :9001 /disk{1...4}/data/tenant1
    minio server --address :9002 /disk{1...4}/data/tenant2
    minio server --address :9003 /disk{1...4}/data/tenant3
    ```
    
    ![Example-2](https://github.com/minio/minio/blob/master/docs/screenshots/Example-2.jpg?raw=true)
    
    ## 2. Distributed Deployment
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupRequestTest.java

            // Verify channel (should be 0)
            assertEquals(0, SMBUtil.readInt4(buffer, bodyOffset + 8));
    
            // Verify token length
            assertEquals(TEST_TOKEN.length, SMBUtil.readInt2(buffer, bodyOffset + 14));
    
            // Verify previous session ID
            assertEquals(TEST_PREVIOUS_SESSION_ID, SMBUtil.readInt8(buffer, bodyOffset + 16));
    
            // Verify token content at the security buffer offset
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/common/Os.kt

            jprofilerHome = "/opt/jprofiler/jprofiler11.1.4",
        ),
        ALPINE(
            "Linux",
            androidHome = "/not/supported",
            jprofilerHome = "/not/supported",
        ),
        WINDOWS(
            "Windows",
            androidHome = """C:\Program Files\android\sdk""",
            jprofilerHome = """C:\Program Files\jprofiler\jprofiler11.1.4""",
            perfTestWorkingDir = "P:/",
        ),
        MACOS(
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Mon Aug 25 20:21:47 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. cmd/object-api-multipart_test.go

    		inputDataSize   int64
    		// flag indicating whether the test should pass.
    		shouldPass bool
    		// expected error output.
    		expectedMd5   string
    		expectedError error
    	}{
    		// Test case  1-4.
    		// Cases with invalid bucket name.
    		{bucketName: ".test", objName: "obj", PartID: 1, expectedError: fmt.Errorf("%s", "Bucket name invalid: .test")},
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 89.4K bytes
    - Viewed (0)
Back to top