- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for USER_HOME (0.05 sec)
-
src/test/java/org/codelibs/core/lang/SystemUtilTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
*/ public static final String USER_DIR = System.getProperty("user.dir"); /** * <code>user.home</code> system property. */ public static final String USER_HOME = System.getProperty("user.home"); /** * Returns the system property value for the specified key. * * @param key the property key * @return the property value, or null if not found */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/StandardSystemProperty.java
/** Line separator ("\n" on UNIX). */ LINE_SEPARATOR("line.separator"), /** User's account name. */ USER_NAME("user.name"), /** User's home directory. */ USER_HOME("user.home"), /** User's current working directory. */ USER_DIR("user.dir"); private final String key; StandardSystemProperty(String key) { this.key = key; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 06 10:03:30 UTC 2025 - 4.9K bytes - Viewed (0)