Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Crowder (0.18 sec)

  1. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

        // faster (and that's debatable), but definitely more memory-hungry. We're
        // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
        // seem to be a worthwhile tradeoff in a browser.
        return matcher;
      }
    
      static String formatCompact4Digits(double value) {
        return "" + ((Number) (Object) value).toPrecision(4);
      }
    
      @JsMethod
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 17:58:45 GMT 2023
    - 2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CharMatcher.java

       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
      }
    
      private static final int DISTINCT_CHARS = Character.MAX_VALUE - Character.MIN_VALUE + 1;
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/AsciiTest.java

        assertFalse(Ascii.equalsIgnoreCase("@", "`"));
        assertFalse(Ascii.equalsIgnoreCase("[", "{"));
      }
    
      @GwtIncompatible // String.toUpperCase() has browser semantics
      public void testEqualsIgnoreCaseUnicodeEquivalence() {
        // Note that it's possible in future that the JDK's idea to toUpperCase() or equalsIgnoreCase()
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    thought), and it said in a low trembling voice, `Let us get to
    the shore, and then I'll tell you my history, and you'll
    understand why it is I hate cats and dogs.'
    
      It was high time to go, for the pool was getting quite crowded
    with the birds and animals that had fallen into it:  there were a
    Duck and a Dodo, a Lory and an Eaglet, and several other curious
    creatures.  Alice led the way, and the whole party swam to the
    shore.
    
    
    
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/HttpHeaders.java

       * header field name.
       *
       * @since 27.1
       */
      public static final String ORIGIN_TRIAL = "Origin-Trial";
      /** The HTTP {@code P3P} header field name. Limited browser support. */
      public static final String P3P = "P3P";
      /** The HTTP {@code Proxy-Authenticate} header field name. */
      public static final String PROXY_AUTHENTICATE = "Proxy-Authenticate";
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/MediaType.java

       * href="http://www.iana.org/assignments/media-types">/IANA MIME Media Types</a> list. Consider
       * {@link #OCTET_STREAM} for binary data that is not being served to a browser.
       *
       * @since 14.0
       */
      public static final MediaType APPLICATION_BINARY = createConstant(APPLICATION_TYPE, "binary");
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Aug 07 16:17:10 GMT 2023
    - 46.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/AsciiTest.java

        assertFalse(Ascii.equalsIgnoreCase("@", "`"));
        assertFalse(Ascii.equalsIgnoreCase("[", "{"));
      }
    
      @GwtIncompatible // String.toUpperCase() has browser semantics
      public void testEqualsIgnoreCaseUnicodeEquivalence() {
        // Note that it's possible in future that the JDK's idea to toUpperCase() or equalsIgnoreCase()
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 5.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    thought), and it said in a low trembling voice, `Let us get to
    the shore, and then I'll tell you my history, and you'll
    understand why it is I hate cats and dogs.'
    
      It was high time to go, for the pool was getting quite crowded
    with the birds and animals that had fallen into it:  there were a
    Duck and a Dodo, a Lory and an Eaglet, and several other curious
    creatures.  Alice led the way, and the whole party swam to the
    shore.
    
    
    
    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)
  9. android/guava/src/com/google/common/base/CharMatcher.java

       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
      }
    
      private static final int DISTINCT_CHARS = Character.MAX_VALUE - Character.MIN_VALUE + 1;
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
Back to top