Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 176 for jobs (0.06 sec)

  1. src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java

        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
            final String message = "Job processing failed";
            final Exception cause = new IllegalStateException("Invalid state");
            final JobProcessingException exception = new JobProcessingException(message, cause);
    
            assertNotNull(exception);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

        }
    
        // Test constructor
        public void test_constructor() {
            // Test that constructor creates instance without error
            PingSearchEngineJob job = new PingSearchEngineJob();
            assertNotNull(job);
        }
    
        // Test different cluster names
        public void test_execute_differentClusterNames() {
            // Test with production cluster name
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java

            super.tearDown();
        }
    
        // Test default constructor
        public void test_constructor() {
            PurgeThumbnailJob job = new PurgeThumbnailJob();
            assertNotNull(job);
            assertEquals(30L * 24 * 60 * 60 * 1000L, job.getExpiry());
        }
    
        // Test getExpiry with default value
        public void test_getExpiry_default() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/SearchBody.java

    import org.codelibs.fess.app.web.api.admin.BaseSearchBody;
    
    /**
     * Search request body for job log administration API.
     */
    public class SearchBody extends BaseSearchBody {
    
        /**
         * Default constructor.
         */
        public SearchBody() {
            super();
        }
    
        /** Job log ID */
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 988 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/joblog/EditBody.java

     */
    package org.codelibs.fess.app.web.api.admin.joblog;
    
    import org.codelibs.fess.app.web.admin.joblog.EditForm;
    
    /**
     * Request body class for job log edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for job log management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/job/PythonJobTest.java

    import org.codelibs.fess.util.InputStreamThread;
    import org.codelibs.fess.util.JobProcess;
    import org.codelibs.fess.util.SystemUtil;
    import org.lastaflute.job.JobManager;
    import org.lastaflute.job.key.LaJobUnique;
    import org.lastaflute.job.subsidiary.CronConsumer;
    
    import jakarta.servlet.ServletContext;
    
    public class PythonJobTest extends UnitFessTestCase {
    
        private PythonJob pythonJob;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/SuggestJob.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.job;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    
    import org.apache.commons.lang3.RandomStringUtils;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/exbhv/ScheduledJobBhv.java

                    if (logger.isDebugEnabled()) {
                        logger.debug("Failed to select a job by {}", id, e);
                    }
                    lastException = e;
                    ThreadUtil.sleep(RandomUtils.nextLong(500, 5000));
                }
            }
            logger.warn("Failed to select a job by {}", id, lastException);
            return OptionalEntity.empty();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. docs/zh-CN/README.md

    我们欢迎您的语言的 Pull Request。
    
    ## 技术支持
    
    * [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI 容器
    * [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web 框架
    * [Lasta Job](https://github.com/lastaflute/lasta-job "Lasta Job"): 任务调度器
    * [Fess Crawler](https://github.com/codelibs/fess-crawler "Fess Crawler"): Web 爬虫
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 12 07:19:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.job.impl;
    
    import java.util.Map;
    
    import org.codelibs.fess.exception.ScriptEngineException;
    import org.codelibs.fess.job.JobExecutor;
    import org.codelibs.fess.script.ScriptEngine;
    import org.codelibs.fess.script.ScriptEngineFactory;
    import org.codelibs.fess.unit.UnitFessTestCase;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top