Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for 02 (0.02 sec)

  1. CHANGELOG.md

    _2022-03-14_
    
     *  Fix: Don't attempt to close pooled connections. We saw occasional fast fallback calls crash in
        the previous alpha due to an unexpected race.
    
    
    ## Version 5.0.0-alpha.5
    
    _2022-02-21_
    
     *  Fix: Don't include [Assertk][assertk] in OkHttp's production dependencies. This regression was
        introduced in the 5.0.0-alpha.4 release.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  2. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

            // Skip 3 bytes
            assertEquals(3, sis.skip(3));
    
            // Read remaining 2 bytes
            byte[] remaining = new byte[2];
            assertEquals(2, sis.read(remaining, 0, 2));
            assertArrayEquals(new byte[] { 40, 50 }, remaining);
        }
    
        @Test
        @DisplayName("Skip handles amount larger than available")
        void skipHandlesLargerThanAvailable() throws IOException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM
        peer.sendFrame().headers(false, 3, headerEntries("a", "android"))
        for (i in 0..2) {
          // Send frames of summing to size 50, which is windowUpdateThreshold.
          peer.sendFrame().data(false, 3, data(24), 24)
          peer.sendFrame().data(false, 3, data(25), 25)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/PreconditionsTest.java

        verifyComplexMessage(expected);
      }
    
      public void testCheckElementIndex_ok() {
        assertEquals(0, checkElementIndex(0, 1));
        assertEquals(0, checkElementIndex(0, 2));
        assertEquals(1, checkElementIndex(1, 2));
      }
    
      public void testCheckElementIndex_badSize() {
        assertThrows(IllegalArgumentException.class, () -> checkElementIndex(1, -1));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/PreconditionsTest.java

        verifyComplexMessage(expected);
      }
    
      public void testCheckElementIndex_ok() {
        assertEquals(0, checkElementIndex(0, 1));
        assertEquals(0, checkElementIndex(0, 2));
        assertEquals(1, checkElementIndex(1, 2));
      }
    
      public void testCheckElementIndex_badSize() {
        assertThrows(IllegalArgumentException.class, () -> checkElementIndex(1, -1));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_4x.md

        Typically this would cause certain redirects to fail in debug and development configurations.
    
    
    ## Version 4.4.0
    
    _2020-02-17_
    
     *  New: Support `canceled()` as an event that can be observed by `EventListener`. This should be
        useful for splitting out canceled calls in metrics.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/SmbCircuitBreaker.java

                    newThreshold = Math.min(currentThreshold + 2, 15);
                }
                // If failure rate is moderate but response time is very high, be stricter
                else if (failureRate > 0.2 && avgResponseTime > 10000) {
                    newThreshold = Math.max(currentThreshold - 1, 2);
                }
                // If system is performing well, be more lenient
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.19.md

    - dmitri.shuralyov.com/gpu/mtl: 666a987
    - github.com/cespare/xxhash/v2: [v2.1.1](https://github.com/cespare/xxhash/v2/tree/v2.1.1)
    - github.com/checkpoint-restore/go-criu/v4: [v4.0.2](https://github.com/checkpoint-restore/go-criu/v4/tree/v4.0.2)
    - github.com/chzyer/logex: [v1.1.10](https://github.com/chzyer/logex/tree/v1.1.10)
    - github.com/chzyer/readline: [2972be2](https://github.com/chzyer/readline/tree/2972be2)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/IterablesTest.java

      }
    
      public void testSkip_structurallyModifiedSkipAllList() throws Exception {
        List<String> list = newArrayList("a", "b", "c");
        Iterable<String> tail = skip(list, 2);
        list.subList(0, 2).clear();
        assertTrue(Iterables.isEmpty(tail));
      }
    
      public void testSkip_illegalArgument() {
        List<String> list = newArrayList("a", "b", "c");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 46.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            assertEquals(doc1, qrList.get(0));
            assertEquals(doc2, qrList.get(1));
    
            // Test subList with boundary indexes
            List<Map<String, Object>> subList = qrList.subList(0, 2);
            assertEquals(2, subList.size());
    
            subList = qrList.subList(1, 1);
            assertEquals(0, subList.size());
        }
    
        public void test_toString_withNullValues() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
Back to top