Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for elephant (0.06 sec)

  1. guava/src/com/google/common/collect/Comparators.java

       * are broken arbitrarily.
       *
       * <p>For example:
       *
       * {@snippet :
       * Stream.of("foo", "quux", "banana", "elephant")
       *     .collect(greatest(2, comparingInt(String::length)))
       * // returns {"elephant", "banana"}
       * }
       *
       * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

                            mapEntry(Range.closedOpen(3, 5), "frisbee"),
                            mapEntry(Range.atMost(-1), "fruitcake"),
                            mapEntry(Range.open(10, 15), "elephant"),
                            mapEntry(Range.closed(20, 22), "umbrella"));
                      }
    
                      @Override
                      public Map<Range<Integer>, String> create(Object... elements) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 30K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2ConnectionTest.kt

        val stream = connection.newStream(headerEntries("b", "banana"), true)
        val out = stream.sink.buffer()
        out.writeUtf8("c3po")
        out.close()
        stream.writeHeaders(headerEntries("e", "elephant"), false, false)
        connection.writePingAndAwaitPong()
        assertThat(connection.openStreamCount()).isEqualTo(0)
    
        // Verify the peer received what was expected.
        val synStream = peer.takeFrame()
    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. src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java

            assertEquals("simple", themeName);
        }
    
        public void test_getThemeName_multiPart() {
            Artifact artifact = new Artifact("fess-theme-elegant-modern", "1.0.0");
            String themeName = themeHelper.getThemeName(artifact);
            assertEquals("elegant-modern", themeName);
        }
    
        public void test_getThemeName_emptyName() {
            try {
                Artifact artifact = new Artifact("fess-theme", "1.0.0");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/xerox.html
    xerox
    
    // xihuan : Beijing Qihu Keji Co., Ltd.
    // https://www.iana.org/domains/root/db/xihuan.html
    xihuan
    
    // xin : Elegant Leader Limited
    // https://www.iana.org/domains/root/db/xin.html
    xin
    
    // xn--11b4c3d : VeriSign Sarl
    // https://www.iana.org/domains/root/db/xn--11b4c3d.html
    कॉम
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
Back to top