Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for Capabilities (0.05 sec)

  1. src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java

    import com.esotericsoftware.kryo.io.Input;
    import com.esotericsoftware.kryo.io.Output;
    
    /**
     * A serializer class for handling object serialization and deserialization.
     * <p>
     * This class provides serialization capabilities using different serializers,
     * currently supporting Kryo and JavaBin serialization formats. The serializer
     * type is determined by the crawler data serializer configuration.
     * </p>
     * <p>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

     * response fields, search fields, facet fields, sort fields, and highlighting.
     * It initializes field mappings from the FessConfig and provides methods to
     * query field properties and capabilities.
     */
    public class QueryFieldConfig {
    
        /**
         * Default constructor.
         */
        public QueryFieldConfig() {
            // Default constructor
        }
    
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * A pager class for file authentication entries, providing pagination functionality
     * for file authentication configurations with search and display capabilities.
     */
    public class FileAuthPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default constructor for file authentication pager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java

    /**
     * A pager class for managing pagination of failure URL records.
     * This class provides functionality to handle pagination of failed crawler URLs
     * with search filters and navigation capabilities.
     */
    public class FailureUrlPager implements Serializable {
    
        /** Serial version UID for serialization compatibility. */
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            client.execute(action, request, listener);
        }
    
        /**
         * Prepares a field capabilities request builder.
         *
         * @param indices the indices to check field capabilities for
         * @return the field capabilities request builder
         */
        @Override
        public FieldCapabilitiesRequestBuilder prepareFieldCaps(final String... indices) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Network.java

     * href="https://github.com/google/guava/wiki/GraphsExplained#choosing-the-right-graph-type">
     * "Choosing the right graph type"</a> section of the Guava User Guide for more details.
     *
     * <h3>Capabilities</h3>
     *
     * <p>{@code Network} supports the following use cases (<a
     * href="https://github.com/google/guava/wiki/GraphsExplained#definitions">definitions of
     * terms</a>):
     *
     * <ul>
     *   <li>directed graphs
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:03:02 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

     * This class extends the base CrawlerThread and provides Fess-specific functionality for
     * crawling and indexing documents, including incremental crawling capabilities, content
     * modification checking, and integration with the Fess search engine backend.
     *
     * <p>Key features include:</p>
     * <ul>
     * <li>Incremental crawling support with last-modified timestamp checking</li>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_4x.md

        ```kotlin
        implementation("com.squareup.okio:okio:2.7.0")
        ```
    
     *  Fix: Avoid log messages like "Didn't find class org.conscrypt.ConscryptHostnameVerifier" when
        detecting the TLS capabilities of the host platform.
    
     *  Fix: Don't crash in `HttpUrl.topPrivateDomain()` when the hostname is malformed.
    
     *  Fix: Don't attempt Brotli decompression if the response body is empty.
    
    
    ## Version 4.7.2
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

         * Adds the searcher to the searchers array and initializes the executor service
         * if it hasn't been created yet. The executor service is created with a thread pool
         * sized based on configuration or system capabilities.
         *
         * @param searcher the RankFusionSearcher to register
         */
        public void register(final RankFusionSearcher searcher) {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

     * </ul>
     *
     * <p>The updater runs continuously until crawling is finished and all documents are processed.
     * It includes error handling, retry logic, and performance monitoring capabilities.
     *
     */
    public class IndexUpdater extends Thread {
        /** Logger for this class */
        private static final Logger logger = LogManager.getLogger(IndexUpdater.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top