Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for stringLength (0.12 sec)

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

        return TreeMultimap.create(StringLength.COMPARATOR, DECREASING_INT_COMPARATOR);
      }
    
      /** Create and populate a {@code TreeMultimap} with explicit comparators. */
      private TreeMultimap<@Nullable String, @Nullable Integer> createPopulate() {
        TreeMultimap<@Nullable String, @Nullable Integer> multimap =
            TreeMultimap.create(StringLength.COMPARATOR, DECREASING_INT_COMPARATOR);
        multimap.put("google", 2);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/collect/OrderingTest.java

            Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength);
        assertTrue(comparator.compare("to", "be") == 0);
        assertTrue(comparator.compare("or", "not") < 0);
        assertTrue(comparator.compare("that", "to") > 0);
    
        new EqualsTester()
            .addEqualityGroup(
                comparator, Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength))
            .addEqualityGroup(DECREASING_INTEGER)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/OrderingTest.java

            Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength);
        assertTrue(comparator.compare("to", "be") == 0);
        assertTrue(comparator.compare("or", "not") < 0);
        assertTrue(comparator.compare("that", "to") > 0);
    
        new EqualsTester()
            .addEqualityGroup(
                comparator, Ordering.<Integer>natural().onResultOf(StringLengthFunction.StringLength))
            .addEqualityGroup(DECREASING_INTEGER)
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        SortedSet<String> set =
            ImmutableSortedSet.copyOf(
                STRING_LENGTH, asList("in", "the", "quick", "jumped", "over", "a"));
        assertSame(STRING_LENGTH, set.comparator());
      }
    
      public void testCopyOfExplicit_iterator_ordering() {
        SortedSet<String> set =
            ImmutableSortedSet.copyOf(
                STRING_LENGTH, asIterator("in", "the", "quick", "jumped", "over", "a"));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/moment-with-locales.min.js.map

    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 224.8K bytes
    - Viewed (0)
Back to top