- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for SystemUtil (0.07 seconds)
-
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
// Verify that SystemUtil extends org.codelibs.core.lang.SystemUtil Class<?> superClass = SystemUtil.class.getSuperclass(); assertEquals("Should extend org.codelibs.core.lang.SystemUtil", "org.codelibs.core.lang.SystemUtil", superClass.getName()); } @Test public void test_constants_reference() { // Test that the constant used is accessible and has expected valueCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
.forEach(e -> logger.debug("Property: {}={}", e.getKey(), SystemUtil.maskSensitiveValue(String.valueOf(e.getKey()), String.valueOf(e.getValue())))); System.getenv() .entrySet() .forEach(e -> logger.debug("Env: {}={}", e.getKey(), SystemUtil.maskSensitiveValue(e.getKey(), e.getValue()))); logger.debug("Options: options={}", options);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 12.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
.forEach(e -> logger.debug("Property: {}={}", e.getKey(), SystemUtil.maskSensitiveValue(String.valueOf(e.getKey()), String.valueOf(e.getValue())))); System.getenv() .entrySet() .forEach(e -> logger.debug("Env: {}={}", e.getKey(), SystemUtil.maskSensitiveValue(e.getKey(), e.getValue()))); logger.debug("Options: options={}", options);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/SuggestJob.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.InputStreamThread; import org.codelibs.fess.util.JobProcess; import org.codelibs.fess.util.ResourceUtil; import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * This job is responsible for executing the suggest creator process. * It builds and runs a command-line process to generate suggest data,
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
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.InputStreamThread; import org.codelibs.fess.util.JobProcess; import org.codelibs.fess.util.ResourceUtil; import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * Job class for generating thumbnails for documents in the search engine. * This job executes the ThumbnailGenerator process as a separate JVM process
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/util/ResourceUtil.java
* then falls back to the URL configured in FessConfig. * * @return the HTTP URL for the OpenSearch server */ public static String getFesenHttpUrl() { final String url = SystemUtil.getSearchEngineHttpAddress(); if (url != null) { return url; } final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getFesenHttpUrl(); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 14.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
.forEach(e -> logger.debug("Property: {}={}", e.getKey(), SystemUtil.maskSensitiveValue(String.valueOf(e.getKey()), String.valueOf(e.getValue())))); System.getenv() .entrySet() .forEach(e -> logger.debug("Env: {}={}", e.getKey(), SystemUtil.maskSensitiveValue(e.getKey(), e.getValue()))); logger.debug("Options: options={}", options);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
import org.codelibs.fess.util.ComponentUtil; import org.codelibs.fess.util.InputStreamThread; import org.codelibs.fess.util.JobProcess; import org.codelibs.fess.util.ResourceUtil; import org.codelibs.fess.util.SystemUtil; import jakarta.servlet.ServletContext; /** * CrawlJob is responsible for executing the crawling process in Fess. * This job launches a separate crawler process that can crawl web sites, file systems,
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)