Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for finishCrawling (0.15 sec)

  1. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        }
    
        public void setSessionIdList(final List<String> sessionIdList) {
            this.sessionIdList = sessionIdList;
        }
    
        public void setFinishCrawling(final boolean finishCrawling) {
            this.finishCrawling = finishCrawling;
        }
    
        public long getDocumentSize() {
            return documentSize;
        }
    
        @Override
        public void setUncaughtExceptionHandler(final UncaughtExceptionHandler eh) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

        protected void startCrawling() {
            synchronized (crawlerContext.activeThreadCountLock) {
                crawlerContext.activeThreadCount++;
            }
        }
    
        protected void finishCrawling() {
            synchronized (crawlerContext.activeThreadCountLock) {
                crawlerContext.activeThreadCount--;
            }
        }
    
        protected boolean isContinue(final int tcCount) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top