Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for logSuffix (0.04 sec)

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

         * The suffix is trimmed and whitespace is replaced with underscores.
         *
         * @param logSuffix the suffix to append to log file names
         * @return this ExecJob instance for method chaining
         */
        public ExecJob logSuffix(final String logSuffix) {
            this.logSuffix = logSuffix.trim().replaceAll("\\s", "_");
            return this;
        }
    
        /**
    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

        }
    
        // Test logSuffix setter
        public void test_logSuffix() {
            String testSuffix = "test suffix";
            ExecJob result = execJob.logSuffix(testSuffix);
            assertEquals("test_suffix", execJob.logSuffix);
            assertSame(execJob, result);
    
            // Test with leading/trailing spaces
            result = execJob.logSuffix("  another suffix  ");
    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