- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for CWD (0.01 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/builtin/BuiltinShellCommandRegistryFactory.java
private List<Completer> cdCompleter(String name) { return List.of(new ArgumentCompleter(new Completers.DirectoriesCompleter(shellContext.cwd))); } private void pwd(CommandInput input) { try { shellContext.writer.accept(shellContext.cwd.get().toString()); } catch (Exception e) { saveException(e); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 12.3K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java
} public Builder lookup(@Nonnull Lookup lookup) { this.lookup = requireNonNull(lookup); return this; } public Builder cwd(Path cwd) { this.cwd = cwd; return this; } public Builder mavenHome(Path mavenHome) { this.mavenHome = mavenHome; return this; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 15.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
LocalContext context = new LocalContext(parserRequest); // the basics try { context.cwd = getCwd(context); } catch (Exception e) { context.parsingFailed = true; context.cwd = getCanonicalPath(Paths.get(".")); parserRequest.logger().error("Error determining working directory", e); } try {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:39:11 UTC 2025 - 25.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellInvoker.java
@Override protected int execute(LookupContext context) throws Exception { // set up JLine built-in commands ConfigurationPath configPath = new ConfigurationPath(context.cwd.get(), context.cwd.get()); Builtins builtins = new Builtins(context.cwd, configPath, null); builtins.rename(Builtins.Command.TTOP, "top"); builtins.alias("zle", "widget"); builtins.alias("bindkey", "keymap");Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 10.1K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
if (userToolchainsFileStr != null) { userToolchainsFile = context.cwd.resolve(userToolchainsFileStr); } } Path installationToolchainsFile = null; if (context.options().altInstallationToolchains().isPresent()) { installationToolchainsFile = context.cwd.resolve( context.options().altInstallationToolchains().get());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
if (projectSettingsFileStr != null) { projectSettingsFile = context.cwd.resolve(projectSettingsFileStr); } } Path installationSettingsFile = null; if (context.options().altInstallationSettings().isPresent()) { installationSettingsFile = context.cwd.resolve( context.options().altInstallationSettings().get());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoal.java
return 1; } // Discover POMs context.info("Discovering POM files..."); Path startingDirectory = options.directory().map(Paths::get).orElse(context.invokerRequest.cwd()); Map<Path, Document> pomMap; try { pomMap = PomDiscovery.discoverPoms(startingDirectory); } catch (IOException | DomTripException e) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 12.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 14.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
.resolve(string.substring(2)) .normalize() .toAbsolutePath(); } else { // resolve based on $CWD return Paths.get(string).normalize().toAbsolutePath(); } } private VersionFilter buildVersionFilter(String filterExpression) { ArrayList<VersionFilter> filters = new ArrayList<>();
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jul 17 05:56:35 UTC 2025 - 25.8K bytes - Viewed (0) -
scripts/docs.py
args = ["mkdocs", "serve", "--dev-addr", "127.0.0.1:8008"] if dirty: args.append("--dirty") subprocess.run( args, env={**os.environ, "LINENUMS": "true"}, cwd=lang_path, check=True ) def get_updated_config_content() -> dict[str, Any]: config = get_en_config() languages = [{"en": "/"}] new_alternate: list[dict[str, str]] = []
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Dec 21 17:40:17 UTC 2025 - 16.9K bytes - Viewed (0)