- Sort Score
- Num 10 results
- Language All
Results 21 - 25 of 25 for user_homeDirectory (0.09 seconds)
-
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_GID_NUMBER = "{labels.gidNumber}"; /** The key of the message: Home Directory */ public static final String LABELS_user_homeDirectory = "{labels.user_homeDirectory}"; /** The key of the message: Home Directory */ public static final String LABELS_HOME_DIRECTORY = "{labels.homeDirectory}"; /** The key of the message: Upgrade */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
parserRequest.logger().error("Error determining installation directory", e); } try { context.userHomeDirectory = getUserHomeDirectory(context); } catch (Exception e) { context.parsingFailed = true; context.userHomeDirectory = context.cwd; parserRequest.logger().error("Error determining user home directory", e); } // top/root
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
/** * Returns the user's home directory. * This is typically obtained from the "user.home" system property. * * @return the user's home directory path */ @Nonnull Path userHomeDirectory(); /** * Shorthand for {@link MessageBuilderFactory}. */ default MessageBuilderFactory messageBuilderFactory() { return parserRequest().messageBuilderFactory(); } /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 6.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java
this.cwd = CWD.create(invokerRequest.cwd()); this.installationDirectory = CliUtils.getCanonicalPath(invokerRequest.installationDirectory()); this.userDirectory = CliUtils.getCanonicalPath(invokerRequest.userHomeDirectory()); this.containerCapsuleManaged = containerCapsuleManaged; this.options = options; this.logger = invokerRequest.parserRequest().logger();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 5.7K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java
// Mock all required properties for LookupContext constructor when(request.cwd()).thenReturn(workingDirectory); when(request.installationDirectory()).thenReturn(Paths.get("/maven")); when(request.userHomeDirectory()).thenReturn(Paths.get("/home/user")); when(request.topDirectory()).thenReturn(workingDirectory); when(request.rootDirectory()).thenReturn(Optional.empty());Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 8.9K bytes - Click Count (0)