Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for INSTANCES (1.33 sec)

  1. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

            assertNotNull("First instance should not be null", target1);
            assertNotNull("Second instance should not be null", target2);
            assertNotSame("Instances should be different objects", target1, target2);
        }
    
        public void test_class_has_proper_annotations() {
            // Verify the class doesn't have any inappropriate annotations
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/BloomFilter.java

     *
     * @param <T> the type of instances that the {@code BloomFilter} accepts
     * @author Dimitris Andreou
     * @author Kevin Bourrillion
     * @since 11.0 (thread-safe since 23.0)
     */
    @Beta
    public final class BloomFilter<T extends @Nullable Object> implements Predicate<T>, Serializable {
      /**
       * A strategy to translate T instances, to {@code numHashFunctions} bit indexes.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeResolver.java

             * just one problem: Under all the JDK versions that we support (though *not* under
             * Android), the built-in TypeVariable's equals() method doesn't recognize instances of our
             * TypeVariable implementation. This is a problem because users compare TypeVariables from
             * the JDK against TypeVariables returned by TypeResolver. To work with all JDK versions,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeResolver.java

             * just one problem: Under all the JDK versions that we support (though *not* under
             * Android), the built-in TypeVariable's equals() method doesn't recognize instances of our
             * TypeVariable implementation. This is a problem because users compare TypeVariables from
             * the JDK against TypeVariables returned by TypeResolver. To work with all JDK versions,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  5. docs/recipes.md

    is an error to have multiple caches accessing the same cache directory simultaneously. Most applications should call `new OkHttpClient()` exactly once, configure it with their cache, and use that same instance everywhere. Otherwise the two cache instances will stomp on each other, corrupt the response cache, and possibly crash your program.
    
    Response caching uses HTTP headers for all configuration. You can add request headers like `Cache-Control: max-stale=3600` and OkHttp's cache will honor...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
Back to top