- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for isCrawlerJob (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
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) -
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)