Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isCrawlerJob (2.39 sec)

  1. src/main/java/org/codelibs/fess/es/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() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. 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;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.1K bytes
    - Viewed (0)
Back to top