Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for lastaEnv (0.04 sec)

  1. 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: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/SuggestJob.java

                } else {
                    cmdList.add("-Dlasta.env=" + systemLastaEnv);
                }
            } else if (StringUtil.isNotBlank(lastaEnv)) {
                cmdList.add("-Dlasta.env=" + lastaEnv);
            } else {
                cmdList.add("-Dlasta.env=" + getExecuteType());
            }
    
            addFessConfigProperties(cmdList);
            addFessSystemProperties(cmdList);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                } else {
                    cmdList.add("-Dlasta.env=" + systemLastaEnv);
                }
            } else if (StringUtil.isNotBlank(lastaEnv)) {
                cmdList.add("-Dlasta.env=" + lastaEnv);
            } else {
                cmdList.add("-Dlasta.env=" + getExecuteType());
            }
    
            addFessConfigProperties(cmdList);
            addFessSystemProperties(cmdList);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/CrawlJob.java

                } else {
                    cmdList.add("-Dlasta.env=" + systemLastaEnv);
                }
            } else if (StringUtil.isNotBlank(lastaEnv)) {
                cmdList.add("-Dlasta.env=" + lastaEnv);
            } else {
                cmdList.add("-Dlasta.env=" + getExecuteType());
            }
    
            addFessConfigProperties(cmdList);
            addFessSystemProperties(cmdList);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19.6K bytes
    - Viewed (0)
Back to top