Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for executeCrawler (0.48 sec)

  1. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

        }
    
        // Test execute with exception in executeCrawler
        public void test_execute_executeCrawlerThrowsException() {
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
                    return 0;
                }
    
                @Override
                protected void executeCrawler() {
                    throw new RuntimeException("Test exception");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/CrawlJob.java

                jobExecutor.addShutdownListener(() -> ComponentUtil.getProcessHelper().destroyProcess(sessionId));
            }
    
            final TimeoutTask timeoutTask = createTimeoutTask();
            try {
                executeCrawler();
                ComponentUtil.getKeyMatchHelper().update();
            } catch (final JobProcessingException e) {
                throw e;
            } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
Back to top