Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for ranking (0.05 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

    /**
     * RankFusionProcessor manages multiple search engines and combines their results using rank fusion algorithms.
     * This processor supports searching with multiple searchers concurrently and merging their results based on
     * ranking scores to provide more comprehensive and accurate search results.
     *
     * The processor maintains a pool of searchers and an executor service for concurrent operations.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    indexer.thread.dump.enabled=true
    # Maximum number of unprocessed documents for the indexer.
    indexer.unprocessed.document.size=1000
    # Whether to enable click count tracking in the indexer.
    indexer.click.count.enabled=true
    # Whether to enable favorite count tracking in the indexer.
    indexer.favorite.count.enabled=true
    # Commit margin time (ms) for webfs in the indexer.
    indexer.webfs.commit.margin.time=5000
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

             * Executes the crawling thread.
             * Sets the running flag, processes the data store, and ensures
             * proper cleanup regardless of success or failure.
             */
            @Override
            public void run() {
                running = true;
                try {
                    process();
                } finally {
                    running = false;
                    finished = true;
                }
            }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

        }
    
        /**
         * Checks if the crawler is currently running.
         *
         * @return true if the crawler is running, false otherwise
         */
        public boolean isCrawlerRunning() {
            return crawlerRunning;
        }
    
        /**
         * Sets the crawler running status.
         *
         * @param crawlerRunning true to indicate the crawler is running, false otherwise
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 10K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

        }
    
        /**
         * Checks if any processes are currently running.
         *
         * @return true if at least one process is running, false otherwise
         */
        public boolean isProcessRunning() {
            return !runningProcessMap.isEmpty();
        }
    
        /**
         * Checks if the process with the given session ID is currently running.
         *
         * @param sessionId unique identifier for the process session
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 06:54:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

            return super.getFile();
        }
    
        /**
         * Closes the stream and deletes the temporary file if it was not retrieved.
         * If an error occurs during file deletion, it is logged but not thrown to avoid
         * masking exceptions from the main operation.
         *
         * @throws IOException if an I/O error occurs during stream closure
         */
        @Override
        public void close() throws IOException {
            try {
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/JobHelper.java

            ComponentUtil.getComponent(JobLogBhv.class).insertOrUpdate(jobLog, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
        }
    
        /**
         * Starts a monitor task for tracking job execution.
         *
         * @param jobLog the job log to monitor
         * @return the timeout task for monitoring
         */
        public TimeoutTask startMonitorTask(final JobLog jobLog) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/Crawler.java

        /** Thread name for data store crawling process. */
        private static final String DATA_CRAWLING_PROCESS = "DataStoreCrawler";
    
        /** Atomic flag indicating whether the crawler is currently running. */
        private static AtomicBoolean running = new AtomicBoolean(false);
    
        /** Thread-safe queue for collecting error messages during crawling operations. */
        private static Queue<String> errors = new ConcurrentLinkedQueue<>();
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/CrawlJob.java

            return resultBuf.toString();
    
        }
    
        /**
         * Gets the count of currently running crawler jobs.
         * This method queries the scheduled jobs to count active crawler processes.
         * Used to enforce maximum concurrent crawler limits.
         *
         * @return the number of currently running crawler jobs
         */
        protected int getRunningJobCount() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  10. CLAUDE.md

    # Requires Fess server and OpenSearch running
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    
    # Run single integration test
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201" -Dtest=SearchApiTests
    ```
    
    ### Running
    ```bash
    # From IDE: Run main method in org.codelibs.fess.FessBoot
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top