Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for addFessConfigProperties (0.08 sec)

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

         * Properties starting with the Fess config prefix are included.
         *
         * @param cmdList the command list to add properties to
         */
        protected void addFessConfigProperties(final List<String> cmdList) {
            System.getProperties()
                    .keySet()
                    .stream()
                    .filter(k -> k != null && k.toString().startsWith(Constants.FESS_CONFIG_PREFIX))
    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

                super.addSystemProperty(cmdList, name, defaultValue, appendValue);
            }
    
            public void testAddFessConfigProperties(List<String> cmdList) {
                super.addFessConfigProperties(cmdList);
            }
    
            public void testAddFessSystemProperties(List<String> cmdList) {
                super.addFessSystemProperties(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