Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 114 for 101 (0.04 sec)

  1. docs/changelogs/changelog_1x.md

    _2013-05-11_
    
     * Fix: Remove use of Java 6-only APIs.
     * Fix: Properly handle exceptions from `NetworkInterface` when querying MTU.
     * Fix: Ensure MTU has a reasonable default and upper-bound.
    
    
    ## Version 1.0.1
    
    _2013-05-06_
    
     * Correct casing of SSL in method names (`getSslSocketFactory`/`setSslSocketFactory`).
    
    
    ## Version 1.0.0
    
    _2013-05-06_
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(input).isEqualTo(expectedOutput);
      }
    
      public void testReverseIndexed() {
        testReverse(new float[] {}, 0, 0, new float[] {});
        testReverse(new float[] {1}, 0, 1, new float[] {1});
        testReverse(new float[] {1, 2}, 0, 2, new float[] {2, 1});
        testReverse(new float[] {3, 1, 1}, 0, 2, new float[] {1, 3, 1});
        testReverse(new float[] {3, 1, 1}, 0, 1, new float[] {3, 1, 1});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        Ints.reverse(input, fromIndex, toIndex);
        assertThat(input).isEqualTo(expectedOutput);
      }
    
      public void testReverseIndexed() {
        testReverse(new int[] {}, 0, 0, new int[] {});
        testReverse(new int[] {1}, 0, 1, new int[] {1});
        testReverse(new int[] {1, 2}, 0, 2, new int[] {2, 1});
        testReverse(new int[] {3, 1, 1}, 0, 2, new int[] {1, 3, 1});
        testReverse(new int[] {3, 1, 1}, 0, 1, new int[] {3, 1, 1});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/primitives/FloatsTest.java

        assertThat(input).isEqualTo(expectedOutput);
      }
    
      public void testReverseIndexed() {
        testReverse(new float[] {}, 0, 0, new float[] {});
        testReverse(new float[] {1}, 0, 1, new float[] {1});
        testReverse(new float[] {1, 2}, 0, 2, new float[] {2, 1});
        testReverse(new float[] {3, 1, 1}, 0, 2, new float[] {1, 3, 1});
        testReverse(new float[] {3, 1, 1}, 0, 1, new float[] {3, 1, 1});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/smb1/ServerMessageBlockTest.java

        void testEncodeDecode() {
            // Setup SMB with some data
            smb.command = ServerMessageBlock.SMB_COM_ECHO;
            smb.mid = 123;
            smb.pid = 456;
            smb.tid = 789;
            smb.uid = 101;
            smb.flags2 = ServerMessageBlock.FLAGS2_UNICODE;
            smb.useUnicode = true;
    
            byte[] params = { 0x01, 0x02, 0x03, 0x04 };
            byte[] bytes = { 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *   </li>
     * <li>A hyphen usually precedes a qualifier, and is always less important than digits/number. For example
     *   {@code 1.0.RC2 < 1.0-RC3 < 1.0.1}; but prefer {@code 1.0.0-RC2} over {@code 1.0.0.RC2}, and more
     *   generally: {@code 1.0.X2 < 1.0-X3 < 1.0.1} for any string {@code X}; but prefer {@code 1.0.0-X1}
     *   over {@code 1.0.0.X1}.</li>
     * </ul>
     *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.10.md

        - [Client Binaries](#client-binaries-11)
        - [Server Binaries](#server-binaries-11)
        - [Node Binaries](#node-binaries-11)
      - [Changelog since v1.10.1](#changelog-since-v1101)
        - [Other notable changes](#other-notable-changes-11)
    - [v1.10.1](#v1101)
      - [Downloads for v1.10.1](#downloads-for-v1101)
        - [Client Binaries](#client-binaries-12)
        - [Server Binaries](#server-binaries-12)
        - [Node Binaries](#node-binaries-12)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/util/ServerResponseValidatorTest.java

        @Test
        public void testBufferAccessNegativeLength() throws Exception {
            byte[] buffer = new byte[100];
            assertThrows(SmbException.class, () -> {
                validator.validateBufferAccess(buffer, 10, -1);
            });
        }
    
        @Test
        public void testBufferAccessOutOfBounds() throws Exception {
            byte[] buffer = new byte[100];
            assertThrows(SmbException.class, () -> {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/RealWebSocket.kt

        // Success.
        return true
      }
    
      @Throws(IOException::class)
      internal fun checkUpgradeSuccess(response: Response): Socket {
        if (response.code != 101) {
          throw ProtocolException(
            "Expected HTTP 101 response but was '${response.code} ${response.message}'",
          )
        }
    
        val headerConnection = response.header("Connection")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_2x.md

        SSL_RSA_WITH_RC4_128_MD5                 2.3  (Deprecated in 5.0)
        ```
    
     *  **Okio updated to 1.0.1.**
    
        ```xml
        <dependency>
          <groupId>com.squareup.okio</groupId>
          <artifactId>okio</artifactId>
          <version>1.0.1</version>
        </dependency>
        ```
    
     *  **New APIs to permit easy certificate pinning.** Be warned, certificate
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top