Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 74 for maxAge (0.12 sec)

  1. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

      private final ServiceManagerState state;
    
      private final ImmutableList<Service> services;
    
      /**
       * Constructs a new instance for managing the given services.
       *
       * @param services The services to manage
       * @throws IllegalArgumentException if not all services are {@linkplain State#NEW new} or if there
       *     are any duplicate services.
       */
      public ServiceManager(Iterable<? extends Service> services) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    
    /**
     * Helper class for managing crawling information and statistics.
     * Provides functionality to track crawling sessions, manage document expiration,
     * and handle crawling information storage and retrieval.
     */
    public class CrawlingInfoHelper {
    
        /**
         * Creates a new instance of CrawlingInfoHelper.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.optional.OptionalEntity;
    
    /**
     * Character mapping file handler for managing character mapping dictionaries.
     * This class provides functionality to load, parse, and manage character mapping
     * rules that define how input characters should be transformed to output characters
     * during text analysis and search processing.
     *
     * Character mapping files contain mapping rules in the format:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/JobLogService.java

    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing job logs in the Fess application.
     * Provides functionality to create, read, update, and delete job log entries,
     * as well as manage job status and perform cleanup operations.
     */
    public class JobLogService {
    
        /**
         * Behavior class for job log database operations.
         */
        @Resource
        protected JobLogBhv jobLogBhv;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

    import java.util.concurrent.Executor;
    import java.util.logging.Level;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A support class for {@code ListenableFuture} implementations to manage their listeners. An
     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Manager class for handling dictionary files in the Fess search system.
     * This class provides functionality to retrieve, store, and manage various
     * dictionary files such as synonyms, kuromoji, protwords, and stopwords.
     * It coordinates with DictionaryCreator instances to handle different
     * dictionary types and manages file synchronization through ConfigSync.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  7. docs/contribute/concurrency.md

    ## Connection Pool
    
    A primary responsibility for any HTTP client is to efficiently manage network connections. Creating and establishing new connections require a fair amount of overhead and added latency. OkHttp will make every effort to reuse existing connections to avoid this overhead and added latency.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ExecutionList.java

    import java.util.concurrent.Executor;
    import java.util.logging.Level;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A support class for {@code ListenableFuture} implementations to manage their listeners. An
     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractService.java

    /**
     * Base class for implementing services that can handle {@link #doStart} and {@link #doStop}
     * requests, responding to them with {@link #notifyStarted()} and {@link #notifyStopped()}
     * callbacks. Its subclasses must manage threads manually; consider {@link
     * AbstractExecutionThreadService} if you need only a single execution thread.
     *
     * @author Jesse Wilson
     * @author Luke Sandberg
     * @since 1.0
     */
    @GwtIncompatible
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

    import org.codelibs.curl.CurlResponse;
    import org.dbflute.optional.OptionalEntity;
    import org.lastaflute.web.servlet.request.stream.WrittenStreamOut;
    
    /**
     * Abstract base class for dictionary files that manage dictionary items.
     * A dictionary file represents a collection of dictionary items with
     * CRUD operations and pagination support.
     *
     * @param <T> the type of dictionary items managed by this file
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
Back to top