- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for workingDirectory (0.09 sec)
-
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. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 8.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
this.executionTimeout = executionTimeout; } /** * Sets the working directory for the command. * @param workingDirectory The working directory. */ public void setWorkingDirectory(final File workingDirectory) { this.workingDirectory = workingDirectory; } /** * Sets the encoding for command output. * @param commandOutputEncoding The command output encoding to set.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 16.1K bytes - Viewed (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.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.4K bytes - Viewed (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() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 13.7K bytes - Viewed (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);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (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()));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0)