Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createSystemProperties (0.07 sec)

  1. src/test/java/org/codelibs/fess/job/ExecJobTest.java

            public TimeoutTask testCreateTimeoutTask() {
                return super.createTimeoutTask();
            }
    
            public void testCreateSystemProperties(List<String> cmdList, File propFile) {
                super.createSystemProperties(cmdList, propFile);
            }
    
            public String testGetLogName(String logPrefix) {
                return super.getLogName(logPrefix);
            }
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

         * @param cmdList the command list (used as comment in properties file)
         * @param propFile the file to store properties to
         * @throws IORuntimeException if an I/O error occurs
         */
        protected void createSystemProperties(final List<String> cmdList, final File propFile) {
            try (FileOutputStream out = new FileOutputStream(propFile)) {
                final Properties prop = new Properties();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top