- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for getExecuteType (0.09 seconds)
-
src/main/java/org/codelibs/fess/job/SuggestJob.java
// WEB-INF/env/suggest/lib appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")), "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); // WEB-INF/plugin appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
// WEB-INF/env/thumbnail/lib appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")), "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); // WEB-INF/plugin appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
// WEB-INF/env/crawler/lib appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/env/" + getExecuteType() + "/lib")), "WEB-INF" + File.separator + "env" + File.separator + getExecuteType() + File.separator + "lib" + File.separator); // WEB-INF/plugin appendJarFile(cpSeparator, buf, new File(servletContext.getRealPath("/WEB-INF/plugin")),Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
*/ protected String getLogName(final String logPrefix) { if (logSuffix.length() > 0) { return logPrefix + "-" + getExecuteType() + "-" + logSuffix; } return logPrefix + "-" + getExecuteType(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
final StringBuilder buf = new StringBuilder(100); buf.append("WEB-INF"); buf.append(File.separator); buf.append("env"); buf.append(File.separator); buf.append(getExecuteType()); buf.append(File.separator); buf.append("resources"); buf.append(File.separator); buf.append(filename.replaceAll("\\.\\.+", "")); return buf.toString(); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 8.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertSame(jobExecutor, execJob.jobExecutor); } // Test getExecuteType @Test public void test_getExecuteType() { assertEquals("test", execJob.getExecuteType()); execJob.setExecuteType("crawler"); assertEquals("crawler", execJob.getExecuteType()); } // Test jobExecutor setter @Test public void test_jobExecutor() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
assertEquals(-1, crawlJob.hotThreadInterval); assertSame(crawlJob, result); } // Test getExecuteType method @Test public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_CRAWLER, crawlJob.getExecuteType()); } // Test execute method with runAll scenario @Test public void test_execute_runAll() { // Setup test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
deleteDirectory(file); } } } dir.delete(); } // Test getExecuteType method @Test public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_THUMBNAIL, thumbnailJob.getExecuteType()); } // Test numOfThreads setter @Test public void test_numOfThreads() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
+ "/test////etc/passwd"; assertEquals(expectedPath, pythonJob.getPyFilePath()); } // Test getExecuteType method @Test public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_PYTHON, pythonJob.getExecuteType()); } // Test execute method with successful execution @Test public void test_execute_success() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 22.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
// May throw different exception in test environment assertNotNull(e); } } // Test getExecuteType method @Test public void test_getExecuteType() { assertEquals(Constants.EXECUTE_TYPE_SUGGEST, suggestJob.getExecuteType()); } // Test session ID generation @Test public void test_sessionIdGeneration() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0)