Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JAVA_IO_TMPDIR (0.54 sec)

  1. src/main/java/org/codelibs/fess/FessBoot.java

        /** System property key for Fess web application path */
        private static final String FESS_WEBAPP_PATH = "fess.webapp.path";
    
        /** System property key for Java temporary directory */
        private static final String JAVA_IO_TMPDIR = "java.io.tmpdir";
    
        /** System property key for Tomcat configuration path */
        private static final String TOMCAT_CONFIG_PATH = "tomcat.config.path";
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/SystemUtil.java

         */
        public static final String OS_NAME = System.getProperty("os.name");
    
        /**
         * <code>java.io.tmpdir</code> system property. Example: /tmp
         */
        public static final String JAVA_IO_TMPDIR = System.getProperty("java.io.tmpdir");
    
        /**
         * <code>user.dir</code> system property.
         */
        public static final String USER_DIR = System.getProperty("user.dir");
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top