Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setThreadPriority (2.02 sec)

  1. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

                }
    
                if (logger.isDebugEnabled()) {
                    logger.debug("Crawling {}", urlsStr);
                }
    
                crawler.setBackground(true);
                crawler.setThreadPriority(crawlerPriority);
    
                crawlerList.add(crawler);
                crawlerStatusList.add(Constants.READY);
            }
    
            // File
            for (final FileConfig fileConfig : fileConfigList) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

            crawlerContext.maxAccessCount = maxAccessCount;
        }
    
        /**
         * Sets the priority for crawler threads.
         * @param threadPriority The thread priority.
         */
        public void setThreadPriority(final int threadPriority) {
            this.threadPriority = threadPriority;
        }
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14K bytes
    - Viewed (0)
Back to top