Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getJavaCommandPath (0.17 sec)

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

            final ProcessHelper processHelper = ComponentUtil.getProcessHelper();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            cmdList.add(fessConfig.getJavaCommandPath());
    
            // -cp
            cmdList.add("-cp");
            final StringBuilder buf = new StringBuilder(100);
            ResourceUtil.getOverrideConfPath().ifPresent(p -> {
                buf.append(p);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/SuggestJob.java

            final ProcessHelper processHelper = ComponentUtil.getProcessHelper();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            cmdList.add(fessConfig.getJavaCommandPath());
    
            // -cp
            cmdList.add("-cp");
            final StringBuilder buf = new StringBuilder(100);
            ResourceUtil.getOverrideConfPath().ifPresent(p -> {
                buf.append(p);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/CrawlJob.java

            final ProcessHelper processHelper = ComponentUtil.getProcessHelper();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            cmdList.add(fessConfig.getJavaCommandPath());
    
            // -cp
            cmdList.add("-cp");
            final StringBuilder buf = new StringBuilder(100);
            ResourceUtil.getOverrideConfPath().ifPresent(p -> {
                buf.append(p);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

         * Get the value for the key 'java.command.path'. <br>
         * The value is, e.g. java <br>
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getJavaCommandPath();
    
        /**
         * Get the value for the key 'python.command.path'. <br>
         * The value is, e.g. python <br>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 459.2K bytes
    - Viewed (0)
Back to top