- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getJobMaxCrawlerProcessesAsInteger (1.52 sec)
-
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
// Mock execution } }; // Mock ComponentUtil ComponentUtil.setFessConfig(new TestFessConfig() { @Override public Integer getJobMaxCrawlerProcessesAsInteger() { return 5; } }); ComponentUtil.register(new KeyMatchHelper() { @Override public void update() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
assertEquals("jpg,jpeg,gif,png", fessConfig.getAppExtensionNames()); } public void test_jobMaxCrawlerProcesses() { assertEquals(Integer.valueOf(3), fessConfig.getJobMaxCrawlerProcessesAsInteger()); } public void test_maxLogOutputLength() { assertEquals(Integer.valueOf(4000), fessConfig.getMaxLogOutputLengthAsInteger()); } // Test index field configurations
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
return this; } @Override public String execute() { // check # of crawler processes final int maxCrawlerProcesses = ComponentUtil.getFessConfig().getJobMaxCrawlerProcessesAsInteger(); if (maxCrawlerProcesses > 0) { final int runningJobCount = getRunningJobCount(); if (runningJobCount > maxCrawlerProcesses) { throw new JobProcessingException(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* @return The value of found property. (NotNull: if not found, exception but basically no way) * @throws NumberFormatException When the property is not integer. */ Integer getJobMaxCrawlerProcessesAsInteger(); /** * Get the value for the key 'job.default.script'. <br> * The value is, e.g. groovy <br> * comment: Default script language for jobs.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1)