- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 116 for automatically (1.57 sec)
-
mockwebserver-junit5/README.md
``` testImplementation("com.squareup.okhttp3:mockwebserver3-junit5:5.1.0") ``` Annotate fields in test classes with `@StartStop`. The server will be started and shut down automatically. ``` class MyTest { @StartStop public final MockWebServer server = new MockWebServer(); @Test void test() { ... } } ``` Requirements ------------
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 19:32:33 UTC 2025 - 665 bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EvictingQueue.java
import com.google.errorprone.annotations.CanIgnoreReturnValue; import java.io.Serializable; import java.util.ArrayDeque; import java.util.Collection; import java.util.Queue; /** * A non-blocking queue which automatically evicts elements from the head of the queue when * attempting to add new elements onto the queue and it is full. This queue orders elements FIFO
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.6K bytes - Viewed (0) -
docs/features/r8_proguard.md
============= If you use OkHttp as a dependency in an Android project which uses R8 as a default compiler you don't have to do anything. The specific rules are [already bundled][okhttp3_pro] into the JAR which can be interpreted by R8 automatically. If you, however, don't use R8 you have to apply the rules from [this file][okhttp3_pro]. You might also need rules from [Okio][okio] which is a dependency of this library.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 07:07:23 UTC 2025 - 570 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/IngestFactory.java
* The factory maintains a sorted collection of ingesters based on their priority * and provides methods to add new ingesters and retrieve the current collection. * * Ingesters are automatically sorted by priority, with lower numbers having higher priority. */ public class IngestFactory { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(IngestFactory.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
/** * Job for purging expired documents from the search index. * This job removes documents that have passed their expiration time based on the expires field. * It helps maintain the search index by cleaning up outdated content automatically. */ public class PurgeDocJob { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(PurgeDocJob.class); /** * Default constructor for PurgeDocJob.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/RemovalCause.java
* ConcurrentMap#replace(Object, Object, Object)}. */ REPLACED { @Override boolean wasEvicted() { return false; } }, /** * The entry was removed automatically because its key or value was garbage-collected. This can * occur when using {@link CacheBuilder#weakKeys}, {@link CacheBuilder#weakValues}, or {@link * CacheBuilder#softValues}. */ COLLECTED { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
guava/src/com/google/common/cache/RemovalCause.java
* ConcurrentMap#replace(Object, Object, Object)}. */ REPLACED { @Override boolean wasEvicted() { return false; } }, /** * The entry was removed automatically because its key or value was garbage-collected. This can * occur when using {@link CacheBuilder#weakKeys}, {@link CacheBuilder#weakValues}, or {@link * CacheBuilder#softValues}. */ COLLECTED { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
*/ public FileTypeHelper() { // Default constructor } /** * Initializes the file type mappings by loading configuration from Fess settings. * This method is called automatically after dependency injection is complete. * The mappings are loaded from the index filetype configuration property, * where each line contains a MIME type to file type mapping in the format "mimetype=filetype". */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
*/ public RelatedQueryHelper() { super(); } /** * Initializes the RelatedQueryHelper after dependency injection is complete. * This method is called automatically by the dependency injection framework * and loads the initial related query configurations. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
*/ public ProtwordsCreator() { super("protwords.*\\.txt"); } /** * Registers this creator with the dictionary manager. * This method is called automatically after construction to add this creator to the dictionary manager. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0)