Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for SystemUtil (0.05 sec)

  1. src/main/java/org/codelibs/fess/util/SystemUtil.java

    /**
     * This class provides system-related utility methods.
     * It extends {@link org.codelibs.core.lang.SystemUtil} and adds
     * methods specific to the Fess application.
     */
    public class SystemUtil extends org.codelibs.core.lang.SystemUtil {
        /**
         * Private constructor to prevent instantiation.
         */
        private SystemUtil() {
        }
    
        /**
         * Gets the HTTP address of the search engine.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/SystemUtil.java

     */
    package org.codelibs.core.lang;
    
    /**
     * Utility class for system operations.
     *
     * @author wyukawa
     * @author shinsuke
     *
     */
    public abstract class SystemUtil {
    
        /**
         * Do not instantiate.
         */
        protected SystemUtil() {
        }
    
        /**
         * <code>file.encoding</code> system property. Example: UTF-8
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/lang/SystemUtilTest.java

        public void test() throws Exception {
            System.out.println(SystemUtil.FILE_ENCODING);
            System.out.println(SystemUtil.LINE_SEPARATOR);
            System.out.println(SystemUtil.PATH_SEPARATOR);
            System.out.println(SystemUtil.OS_NAME);
            System.out.println(SystemUtil.JAVA_IO_TMPDIR);
            System.out.println(SystemUtil.USER_DIR);
            System.out.println(SystemUtil.USER_HOME);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            // Verify that SystemUtil extends org.codelibs.core.lang.SystemUtil
            Class<?> superClass = SystemUtil.class.getSuperclass();
            assertEquals("Should extend org.codelibs.core.lang.SystemUtil", "org.codelibs.core.lang.SystemUtil", superClass.getName());
        }
    
        public void test_constants_reference() {
            // Test that the constant used is accessible and has expected value
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.timer.SystemMonitorTarget;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.SystemUtil;
    import org.kohsuke.args4j.CmdLineException;
    import org.kohsuke.args4j.CmdLineParser;
    import org.kohsuke.args4j.Option;
    import org.lastaflute.di.core.external.GenericExternalContext;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/PythonJob.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.InputStreamThread;
    import org.codelibs.fess.util.JobProcess;
    import org.codelibs.fess.util.SystemUtil;
    
    import jakarta.servlet.ServletContext;
    
    /**
     * Job for executing Python scripts within the Fess search engine environment.
     * This job extends ExecJob to provide Python-specific functionality for running
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    import org.codelibs.fess.opensearch.client.SearchEngineClient;
    import org.codelibs.fess.timer.SystemMonitorTarget;
    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.SystemUtil;
    import org.kohsuke.args4j.CmdLineException;
    import org.kohsuke.args4j.CmdLineParser;
    import org.kohsuke.args4j.Option;
    import org.lastaflute.di.core.external.GenericExternalContext;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/job/SuggestJob.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.InputStreamThread;
    import org.codelibs.fess.util.JobProcess;
    import org.codelibs.fess.util.ResourceUtil;
    import org.codelibs.fess.util.SystemUtil;
    
    import jakarta.servlet.ServletContext;
    
    /**
     * This job is responsible for executing the suggest creator process.
     * It builds and runs a command-line process to generate suggest data,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.InputStreamThread;
    import org.codelibs.fess.util.JobProcess;
    import org.codelibs.fess.util.ResourceUtil;
    import org.codelibs.fess.util.SystemUtil;
    
    import jakarta.servlet.ServletContext;
    
    /**
     * Job class for generating thumbnails for documents in the search engine.
     * This job executes the ThumbnailGenerator process as a separate JVM process
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         * then falls back to the URL configured in FessConfig.
         *
         * @return the HTTP URL for the OpenSearch server
         */
        public static String getFesenHttpUrl() {
            final String url = SystemUtil.getSearchEngineHttpAddress();
            if (url != null) {
                return url;
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            return fessConfig.getFesenHttpUrl();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
Back to top