Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Twenty (0.23 sec)

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

        IntegerDiv10 eleven = new IntegerDiv10(11);
        IntegerDiv10 twelve = new IntegerDiv10(12);
        IntegerDiv10 twenty = new IntegerDiv10(20);
        Map<IntegerDiv10, String> original =
            ImmutableSortedMap.of(three, "three", eleven, "eleven", twenty, "twenty");
        Map<IntegerDiv10, String> copy = ImmutableMap.copyOf(original);
        assertTrue(original.containsKey(twelve));
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 27K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

        IntegerDiv10 eleven = new IntegerDiv10(11);
        IntegerDiv10 twelve = new IntegerDiv10(12);
        IntegerDiv10 twenty = new IntegerDiv10(20);
        Map<IntegerDiv10, String> original =
            ImmutableSortedMap.of(three, "three", eleven, "eleven", twenty, "twenty");
        Map<IntegerDiv10, String> copy = ImmutableMap.copyOf(original);
        assertTrue(original.containsKey(twelve));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

        IntegerDiv10 three = new IntegerDiv10(3);
        IntegerDiv10 eleven = new IntegerDiv10(11);
        IntegerDiv10 twelve = new IntegerDiv10(12);
        IntegerDiv10 twenty = new IntegerDiv10(20);
    
        List<IntegerDiv10> original = ImmutableList.of(three, eleven, twelve, twenty);
    
        Multiset<IntegerDiv10> copy = ImmutableSortedMultiset.copyOf(original);
        assertTrue(copy.contains(eleven));
        assertTrue(copy.contains(twelve));
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

        IntegerDiv10 three = new IntegerDiv10(3);
        IntegerDiv10 eleven = new IntegerDiv10(11);
        IntegerDiv10 twelve = new IntegerDiv10(12);
        IntegerDiv10 twenty = new IntegerDiv10(20);
    
        List<IntegerDiv10> original = ImmutableList.of(three, eleven, twelve, twenty);
    
        Multiset<IntegerDiv10> copy = ImmutableSortedMultiset.copyOf(original);
        assertTrue(copy.contains(eleven));
        assertTrue(copy.contains(twelve));
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 20:09:59 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Ascii.java

       */
      public static char toUpperCase(char c) {
        return isLowerCase(c) ? (char) (c ^ CASE_MASK) : c;
      }
    
      /**
       * Indicates whether {@code c} is one of the twenty-six lowercase ASCII alphabetic characters
       * between {@code 'a'} and {@code 'z'} inclusive. All others (including non-ASCII characters)
       * return {@code false}.
       */
      public static boolean isLowerCase(char c) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Ascii.java

       */
      public static char toUpperCase(char c) {
        return isLowerCase(c) ? (char) (c ^ CASE_MASK) : c;
      }
    
      /**
       * Indicates whether {@code c} is one of the twenty-six lowercase ASCII alphabetic characters
       * between {@code 'a'} and {@code 'z'} inclusive. All others (including non-ASCII characters)
       * return {@code false}.
       */
      public static boolean isLowerCase(char c) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and night!  You see the earth takes twenty-four hours to turn
    round on its axis--'
    
      `Talking of axes,' said the Duchess, `chop off her head!'
    
      Alice glanced rather anxiously at the cook, to see if she meant
    to take the hint; but the cook was busily stirring the soup, and
    seemed not to be listening, so she went on again:  `Twenty-four
    hours, I THINK; or is it twelve?  I--'
    
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    and night!  You see the earth takes twenty-four hours to turn
    round on its axis--'
    
      `Talking of axes,' said the Duchess, `chop off her head!'
    
      Alice glanced rather anxiously at the cook, to see if she meant
    to take the hint; but the cook was busily stirring the soup, and
    seemed not to be listening, so she went on again:  `Twenty-four
    hours, I THINK; or is it twelve?  I--'
    
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/eventbus/EventBus.java

     *   <li>It <a href="https://github.com/google/guava/issues/1431">doesn't support parameterized
     *       types</a>.
     *   <li>With the introduction of lambdas in Java 8, EventBus went from less verbose than listeners
     *       to <a href="https://github.com/google/guava/issues/3311">more verbose</a>.
     * </ul>
     *
     * <h2>EventBus Summary</h2>
     *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Aug 25 16:37:57 GMT 2021
    - 12.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

       * the state transitions.
       */
      private static final class ServiceListener extends Service.Listener {
        final Service service;
        // We store the state in a weak reference to ensure that if something went wrong while
        // constructing the ServiceManager we don't pointlessly keep updating the state.
        final WeakReference<ServiceManagerState> state;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Dec 13 19:45:20 GMT 2023
    - 30.5K bytes
    - Viewed (0)
Back to top