Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PythonJob (0.14 sec)

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

     */
    public class PythonJob extends ExecJob {
        /** Logger instance for this class */
        static final Logger logger = LogManager.getLogger(PythonJob.class);
    
        /**
         * Default constructor for PythonJob.
         * Creates a new instance of the Python job with default settings.
         */
        public PythonJob() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PythonJobTest.java

        public void test_filename() {
            assertNull(pythonJob.filename);
    
            PythonJob result = pythonJob.filename("test.py");
    
            assertSame(pythonJob, result);
            assertEquals("test.py", pythonJob.filename);
        }
    
        // Test single argument addition
        public void test_arg() {
            assertTrue(pythonJob.argList.isEmpty());
    
            PythonJob result = pythonJob.arg("arg1");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_job.xml

    	</component>
    	<component name="pingJob" class="org.codelibs.fess.job.PingSearchEngineJob" instance="prototype">
    	</component>
    	<component name="pythonJob" class="org.codelibs.fess.job.PythonJob" instance="prototype">
    	</component>
    	<!-- Backward Compatibility  -->
    	<component name="pingEsJob" class="org.codelibs.fess.job.PingSearchEngineJob" instance="prototype">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 12 22:21:45 UTC 2025
    - 1.5K bytes
    - Viewed (0)
Back to top