- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for AppType (0.05 seconds)
-
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
// Since we can't modify environment variables directly, // we test the current behavior String appType = ResourceUtil.getAppType(); assertNotNull(appType); // appType should be either empty string or the actual env value assertTrue(appType.isEmpty() || appType.length() > 0); } @Test public void test_getOverrideConfPath() { // Test when app type is not dockerCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
* * @return the application type string, or empty string if not set */ public static String getAppType() { final String appType = System.getenv(FESS_APP_TYPE); if (StringUtil.isNotBlank(appType)) { return appType; } return StringUtil.EMPTY; } /** * Gets the override configuration path from environment variable when running in Docker.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)