Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for isCrawlerJob (0.1 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJob.java

                return "groovy";
            }
            return st;
        }
    
        public boolean isLoggingEnabled() {
            return Constants.T.equals(getJobLogging());
        }
    
        public boolean isCrawlerJob() {
            return Constants.T.equals(getCrawler());
        }
    
        public boolean isEnabled() {
            return Constants.T.equals(getAvailable());
        }
    
        public boolean isRunning() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java

            final ScheduledJob job = new ScheduledJob();
            job.setCrawler(Constants.T);
            assertTrue(job.isCrawlerJob());
        }
    
        @Test
        public void test_isCrawlerJob_false() {
            final ScheduledJob job = new ScheduledJob();
            job.setCrawler(Constants.F);
            assertFalse(job.isCrawlerJob());
        }
    
        @Test
        public void test_getScriptType_default() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

            copyBeanToBean(entity, form, op -> op.exclude("crudMode").excludeNull());
            form.jobLogging = entity.isLoggingEnabled() ? Constants.ON : null;
            form.crawler = entity.isCrawlerJob() ? Constants.ON : null;
            form.available = entity.isEnabled() ? Constants.ON : null;
        }
    
        /**
         * Creates a ScheduledJob entity from form data with user and timestamp information.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 21.8K bytes
    - Click Count (0)
Back to Top