Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Purpose (0.06 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      @SuppressWarnings("rawtypes") // purpose is to test raw type
      public void testGetSupertype_fromRawClass() {
        assertEquals(
            Types.newParameterizedType(Iterable.class, List.class.getTypeParameters()[0]),
            new TypeToken<List>() {}.getSupertype(Iterable.class).getType());
      }
    
      @SuppressWarnings({"rawtypes", "unchecked"}) // purpose is to test raw type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      }
    
      @SuppressWarnings("rawtypes") // purpose is to test raw type
      public void testGetSupertype_fromRawClass() {
        assertEquals(
            Types.newParameterizedType(Iterable.class, List.class.getTypeParameters()[0]),
            new TypeToken<List>() {}.getSupertype(Iterable.class).getType());
      }
    
      @SuppressWarnings({"rawtypes", "unchecked"}) // purpose is to test raw type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

     * article on <a href="https://github.com/google/guava/wiki/ListenableFutureExplained">{@code
     * ListenableFuture}</a>.
     *
     * <p>The main purpose of {@code ListenableFuture} is to help you chain together a graph of
     * asynchronous operations. You can chain them together manually with calls to methods like {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

     * shares the same connection pool, thread pools, and configuration. Use the builder methods to
     * add configuration to the derived client for a specific purpose.
     *
     * This example shows the single instance with default configurations.
     *
     * ```java
     * public final OkHttpClient client = new OkHttpClient.Builder()
     *     .readTimeout(1000, TimeUnit.MILLISECONDS)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            }
            buf.append(segment);
            return buf.toString();
        }
    
        /**
         * Gets the site path for display purposes.
         * Extracts and formats the site path from document URL.
         *
         * @param docMap the document data map
         * @return the formatted site path
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

     * redundancy for such URLs.
     *
     * Because they don't attempt canonical form, these classes are surprisingly difficult to use
     * securely. Suppose you're building a webservice that checks that incoming paths are prefixed
     * "/static/images/" before serving the corresponding assets from the filesystem.
     *
     * ```java
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/CharMatcher.java

        return Whitespace.INSTANCE;
      }
    
      /**
       * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
       * interpreted as a break between words for formatting purposes). See {@link #whitespace()} for a
       * discussion of that term.
       *
       * @since 19.0 (since 2.0 as constant {@code BREAKING_WHITESPACE})
       */
      public static CharMatcher breakingWhitespace() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 53.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         *
         * Read operations can thus proceed without locking, but rely on selected uses of volatiles to
         * ensure that completed write operations performed by other threads are noticed. For most
         * purposes, the "count" field, tracking the number of elements, serves as that volatile
         * variable ensuring visibility. This is convenient because this field needs to be read in many
         * read operations anyway:
         *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
Back to top