Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for SystemUtil (0.24 seconds)

  1. src/main/java/org/codelibs/fess/util/SystemUtil.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    
    /**
     * This class provides system-related utility methods.
     * It extends {@link org.codelibs.core.lang.SystemUtil} and adds
     * methods specific to the Fess application.
     */
    public class SystemUtil extends org.codelibs.core.lang.SystemUtil {
    
        private static final String DEFAULT_SENSITIVE_PATTERN = ".*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.*";
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:32:50 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. 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 value
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    case UNAUTHORIZED:
                        logger.warn("[{}] Unauthorized access: {}", i, SystemUtil.getSearchEngineHttpAddress(), cause);
                        break;
                    default:
                        logger.debug("[{}][{}] Failed to access to Fesen ({})", i, status, SystemUtil.getSearchEngineHttpAddress(), cause);
                        break;
                    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
Back to Top