Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for appendValue (0.09 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

         * @param name the property name
         * @param defaultValue the default value to use if property doesn't exist
         * @param appendValue the value to append to the property value
         */
        protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) {
            final String value = System.getProperty(name);
            if (value != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            }
    
            // Expose protected methods for testing
            public void testAddSystemProperty(List<String> cmdList, String name, String defaultValue, String appendValue) {
                super.addSystemProperty(cmdList, name, defaultValue, appendValue);
            }
    
            public void testAddFessConfigProperties(List<String> cmdList) {
                super.addFessConfigProperties(cmdList);
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top