Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for charBufferFromThreadLocal (0.08 sec)

  1. android/guava/src/com/google/common/escape/Platform.java

     *
     * @author Jesse Wilson
     */
    @GwtCompatible
    final class Platform {
      private Platform() {}
    
      /** Returns a thread-local 1024-char array. */
      static char[] charBufferFromThreadLocal() {
        // requireNonNull accommodates Android's @RecentlyNullable annotation on ThreadLocal.get
        return requireNonNull(DEST_TL.get());
      }
    
      /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top