Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 147 for processors (0.05 sec)

  1. src/main/java/org/codelibs/fess/job/CrawlJob.java

                    throw new JobProcessingException(
                            runningJobCount + " crawler processes are running. Max processes are " + maxCrawlerProcesses + ".");
                }
            }
    
            final StringBuilder resultBuf = new StringBuilder(100);
            final boolean runAll = webConfigIds == null && fileConfigIds == null && dataConfigIds == null;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/WebApiManager.java

         * @param request The HTTP servlet request.
         * @return True if the request matches, false otherwise.
         */
        boolean matches(HttpServletRequest request);
    
        /**
         * Processes the request through this API manager.
         * @param request The HTTP servlet request.
         * @param response The HTTP servlet response.
         * @param chain The filter chain.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/AggregateLogJob.java

    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.helper.SearchLogHelper;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Job for aggregating and storing search logs.
     * This job processes search logs and stores them in the search log repository.
     */
    public class AggregateLogJob {
    
        private static final Logger logger = LogManager.getLogger(AggregateLogJob.class);
    
        /**
         * Default constructor.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/PushObserver.kt

     * limitations under the License.
     */
    package okhttp3.internal.http2
    
    import java.io.IOException
    import okhttp3.Protocol
    import okio.BufferedSource
    
    /**
     * [HTTP/2][Protocol.HTTP_2] only. Processes server-initiated HTTP requests on the client.
     * Implementations must quickly dispatch callbacks to avoid creating a bottleneck.
     *
     * While [onReset] may occur at any time, the following callbacks are expected in order,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/query/BoostQueryCommand.java

    import org.codelibs.fess.exception.InvalidQueryException;
    import org.lastaflute.core.message.UserMessages;
    import org.opensearch.index.query.QueryBuilder;
    
    /**
     * Query command implementation for handling Boost queries.
     * Processes Lucene BoostQuery objects and applies boost factors.
     */
    public class BoostQueryCommand extends QueryCommand {
        /**
         * Default constructor for BoostQueryCommand.
         */
        public BoostQueryCommand() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

    import org.codelibs.fess.Constants;
    import org.codelibs.fess.exception.QueryParseException;
    import org.lastaflute.web.util.LaRequestUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * A query parser that processes search queries and converts them to Lucene Query objects.
     * This class provides a flexible architecture using a chain of filters to process and transform
     * queries before they are parsed by the underlying Lucene query parser.
     *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java

    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.index.query.RangeQueryBuilder;
    
    /**
     * Command class for handling term range query execution and conversion.
     * This class processes Lucene TermRangeQuery objects and converts them to OpenSearch QueryBuilder instances.
     */
    public class TermRangeQueryCommand extends QueryCommand {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java

            String queryString = builder.toString();
            assertFalse(queryString.contains("important_content"));
        }
    
        public void test_register() {
            // Save the original processor
            QueryProcessor originalProcessor = ComponentUtil.getQueryProcessor();
    
            try {
                // Create a new QueryProcessor and initialize it
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    /**
     * Helper class for managing data crawling operations in Fess.
     * This class coordinates the execution of data store crawling processes,
     * managing multiple concurrent crawling threads and handling the indexing
     * of crawled documents into the search engine.
     *
     * <p>The DataIndexHelper supports:</p>
     * <ul>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

            try {
                jobHelper.setJobRuntime(runtime);
                process(runtime);
            } finally {
                jobHelper.setJobRuntime(null);
            }
        }
    
        /**
         * Processes the job.
         * @param runtime The job runtime.
         */
        protected void process(final LaJobRuntime runtime) {
            if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top