Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isIgnored (0.14 sec)

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

          int thisSize = 0;
          for (E e : this) {
            try {
              if (!that.contains(e)) {
                return false;
              }
            } catch (NullPointerException | ClassCastException ignored) {
              return false;
            }
            thisSize++;
          } // that.containsAll(this) so that.size() >= this.size()
    
          if (thisSize == thatMaxSize) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        assertThat(stats.loadSuccessCount()).isEqualTo(4);
        assertThat(stats.loadExceptionCount()).isEqualTo(0);
        assertThat(stats.hitCount()).isEqualTo(3);
    
        // duplicate keys are ignored, and don't impact stats
        assertThat(cache.getAll(asList(4, 5))).containsExactly(4, 4, 5, 5);
        stats = cache.stats();
        assertThat(stats.missCount()).isEqualTo(5);
        assertThat(stats.loadSuccessCount()).isEqualTo(5);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 91.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        assertThat(stats.loadSuccessCount()).isEqualTo(4);
        assertThat(stats.loadExceptionCount()).isEqualTo(0);
        assertThat(stats.hitCount()).isEqualTo(3);
    
        // duplicate keys are ignored, and don't impact stats
        assertThat(cache.getAll(asList(4, 5))).containsExactly(4, 4, 5, 5);
        stats = cache.stats();
        assertThat(stats.missCount()).isEqualTo(5);
        assertThat(stats.loadSuccessCount()).isEqualTo(5);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 91.1K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.sendFrame().ping(false, 2, 0)
        peer.acceptFrame() // PING
        peer.sendFrame().ping(true, 99, 0) // This pong is silently ignored.
        peer.sendFrame().ping(false, 4, 0)
        peer.acceptFrame() // PING
        peer.play()
    
        // Play it back.
        connect(peer)
    
        // Verify the peer received what was expected.
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 75.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

                if (pos > 0 && pos < 10) {
                    u = encodeUrl(normalizeUrl(urlValue), encoding);
                }
            }
    
            if (u == null) {
                logger.warn("Ignored child URL: childUrl={}, parentUri={}", attrValue, uri);
                return;
            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("URL conversion: original={}, converted={}", attrValue, u);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

        assertThat(parse("http://ABCD").host).isEqualTo("abcd")
        assertThat(parse("http://Σ").host).isEqualTo("xn--4xa")
      }
    
      @Test
      fun hostnameIgnoredCharacters() {
        // The soft hyphen (­) should be ignored.
        assertThat(parse("http://AB\u00adCD").host).isEqualTo("abcd")
      }
    
      @Test
      fun hostnameMultipleCharacterMapping() {
        // Map the single character telephone symbol (℡) to the string "tel".
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
Back to top