- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for lastaEnv (0.04 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
/** * Sets the Lasta environment configuration. * * @param env the Lasta environment string * @return this ExecJob instance for method chaining */ public ExecJob lastaEnv(final String env) { lastaEnv = env; return this; } /** * Adds a system property to the command list. * If the property exists in the system, it uses that value with optional append value.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertEquals("-XX:+UseG1GC", execJob.jvmOptions.get(2)); } // Test lastaEnv setter public void test_lastaEnv() { String testEnv = "production"; ExecJob result = execJob.lastaEnv(testEnv); assertEquals(testEnv, execJob.lastaEnv); assertSame(execJob, result); } // Test addSystemProperty method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)