Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ExecJob (0.35 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

         * @return this ExecJob instance for method chaining
         */
        public ExecJob jobExecutor(final JobExecutor jobExecutor) {
            this.jobExecutor = jobExecutor;
            return this;
        }
    
        /**
         * Sets the session ID for this job execution.
         *
         * @param sessionId the unique session identifier
         * @return this ExecJob instance for method chaining
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            assertNotNull(execJob);
            assertNull(execJob.jobExecutor);
            assertNull(execJob.sessionId);
            assertTrue(execJob.useLocalFesen);
            assertNull(execJob.logFilePath);
            assertNull(execJob.logLevel);
            assertEquals(StringUtil.EMPTY, execJob.logSuffix);
            assertNotNull(execJob.jvmOptions);
            assertTrue(execJob.jvmOptions.isEmpty());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/PythonJob.java

     * This job extends ExecJob to provide Python-specific functionality for running
     * Python scripts with proper environment setup and argument passing.
     *
     * <p>Python scripts are executed in the WEB-INF/env/python/resources directory
     * and have access to the Fess system environment including OpenSearch URL and session ID.</p>
     */
    public class PythonJob extends ExecJob {
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/SuggestJob.java

     * It builds and runs a command-line process to generate suggest data,
     * handling classpath setup, system properties, and process monitoring.
     */
    public class SuggestJob extends ExecJob {
    
        private static final Logger logger = LogManager.getLogger(SuggestJob.class);
    
        /**
         * Constructs a new suggest job.
         */
        public SuggestJob() {
            // do nothing
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

     * This job executes the ThumbnailGenerator process as a separate JVM process
     * to create thumbnail images for supported document types.
     */
    public class GenerateThumbnailJob extends ExecJob {
        /** Logger for this class. */
        static final Logger logger = LogManager.getLogger(GenerateThumbnailJob.class);
    
        /** Number of threads to use for thumbnail generation. */
        protected int numOfThreads = 1;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/CrawlJob.java

     *   <li>Document expiration handling</li>
     *   <li>Hot thread monitoring for performance analysis</li>
     *   <li>Process isolation with separate JVM</li>
     * </ul>
     */
    public class CrawlJob extends ExecJob {
    
        private static final Logger logger = LogManager.getLogger(CrawlJob.class);
    
        /**
         * The namespace identifier for the crawling session.
         * Used to organize and identify crawling activities in the system.
    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