Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for cmdline (0.19 sec)

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

            if (StringUtil.isBlank(filename)) {
                throw new JobProcessingException("Python script is not specified.");
            }
    
            cmdList.add(fessConfig.getPythonCommandPath());
    
            cmdList.add(getPyFilePath());
    
            cmdList.addAll(argList);
    
            try {
    
                final File baseDir = new File(servletContext.getRealPath("/WEB-INF")).getParentFile();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/CrawlJob.java

            }
    
            cmdList.add(Crawler.class.getCanonicalName());
    
            cmdList.add("--sessionId");
            cmdList.add(sessionId);
            cmdList.add("--name");
            cmdList.add(namespace);
    
            if (webConfigIds != null && webConfigIds.length > 0) {
                cmdList.add("-w");
                cmdList.add(StringUtils.join(webConfigIds, ','));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                jvmOptions.stream().filter(StringUtil::isNotBlank).forEach(cmdList::add);
            }
    
            cmdList.add(ThumbnailGenerator.class.getCanonicalName());
    
            cmdList.add("--sessionId");
            cmdList.add(sessionId);
            cmdList.add("--numOfThreads");
            cmdList.add(Integer.toString(numOfThreads));
            if (cleanup) {
                cmdList.add("--cleanup");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

            }
        }
    
        public JobProcess startProcess(final String sessionId, final List<String> cmdList, final Consumer<ProcessBuilder> pbCall) {
            return startProcess(sessionId, cmdList, pbCall, InputStreamThread.MAX_BUFFER_SIZE, null);
        }
    
        public synchronized JobProcess startProcess(final String sessionId, final List<String> cmdList, final Consumer<ProcessBuilder> pbCall,
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/SuggestJob.java

            addFessSystemProperties(cmdList);
            addSystemProperty(cmdList, Constants.FESS_CONF_PATH, null, null);
            cmdList.add("-Dfess." + getExecuteType() + ".process=true");
            if (logFilePath == null) {
                final String value = System.getProperty("fess.log.path");
                logFilePath = value != null ? value : new File(targetDir, "logs").getAbsolutePath();
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/ExecJob.java

                if (appendValue != null) {
                    buf.append(appendValue);
                }
                cmdList.add(buf.toString());
            } else if (defaultValue != null) {
                cmdList.add("-D" + name + "=" + defaultValue);
            }
        }
    
        protected void addFessConfigProperties(final List<String> cmdList) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                    final List<String> cmdList = new ArrayList<>();
                    for (final String value : commandList) {
                        cmdList.add(expandPath(value.replace("${url}", tempPath).replace("${outputFile}", outputPath)));
                    }
    
                    executeCommand(thumbnailId, cmdList);
    
                    if (outputFile.isFile() && outputFile.length() == 0) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top