- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for workingDirectory (1.92 seconds)
-
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java
} /** * Creates a mock UpgradeContext with the specified working directory. * * @param workingDirectory the working directory to use * @return a mock UpgradeContext */ public static UpgradeContext createMockContext(Path workingDirectory) { return createMockContext(workingDirectory, createDefaultOptions()); } /** * Creates a mock UpgradeContext with the specified options. *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) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoalTest.java
} private UpgradeContext createMockContext(Path workingDirectory) { return TestUtils.createMockContext(workingDirectory); } private UpgradeContext createMockContext(Path workingDirectory, UpgradeOptions options) { return TestUtils.createMockContext(workingDirectory, options); } private UpgradeOptions createDefaultOptions() {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 13.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
} } /** * Sets the working directory for command execution. * @param workingDirectory The working directory. */ public void setWorkingDirectory(final File workingDirectory) { this.workingDirectory = workingDirectory; } /** * Sets the maximum number of output lines to capture. * @param maxOutputLine The maximum output line count.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 14.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
CommandLine commandLine = cliRequest.commandLine; String workingDirectory = cliRequest.workingDirectory; boolean quiet = cliRequest.quiet; boolean verbose = cliRequest.verbose; request.setShowErrors(cliRequest.showErrors); // default: false File baseDirectory = new File(workingDirectory, "").getAbsoluteFile(); disableInteractiveModeIfNeeded(cliRequest, request);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
} protected void init(C context) throws Exception { Map<String, Object> data = new HashMap<>(); data.put("plexus", context.lookup.lookup(PlexusContainer.class)); data.put("workingDirectory", context.cwd.get().toString()); data.put("systemProperties", toProperties(context.protoSession.getSystemProperties())); data.put("userProperties", toProperties(context.protoSession.getUserProperties()));Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Oct 28 13:01:07 GMT 2025 - 43.2K bytes - Click Count (0)