Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for CWD (0.01 sec)

  1. 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 Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java

        protected abstract R getInvokerRequest(LocalContext context);
    
        protected Path getCwd(LocalContext context) throws ParserException {
            if (context.parserRequest.cwd() != null) {
                Path result = getCanonicalPath(context.parserRequest.cwd());
                context.systemPropertiesOverrides.put("user.dir", result.toString());
                return result;
            } else {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/DefaultMavenInvoker.java

            Map<String, Object> data = new HashMap<>();
            data.put("plexus", context.lookup.lookup(PlexusContainer.class));
            data.put("workingDirectory", invokerRequest.cwd().toString());
            data.put("systemProperties", toProperties(invokerRequest.systemProperties()));
            data.put("userProperties", toProperties(invokerRequest.userProperties()));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. 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 Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 08 11:01:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. lib/wasm/wasm_exec.js

    			getuid() { return -1; },
    			getgid() { return -1; },
    			geteuid() { return -1; },
    			getegid() { return -1; },
    			getgroups() { throw enosys(); },
    			pid: -1,
    			ppid: -1,
    			umask() { throw enosys(); },
    			cwd() { throw enosys(); },
    			chdir() { throw enosys(); },
    		}
    	}
    
    	if (!globalThis.path) {
    		globalThis.path = {
    			resolve(...pathSegments) {
    				return pathSegments.join("/");
    			}
    		}
    	}
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Aug 30 19:15:21 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                this.invoker = invoker;
                this.protoLookup = invoker.protoLookup;
                this.invokerRequest = requireNonNull(invokerRequest);
                this.cwdResolver = s -> invokerRequest.cwd().resolve(s).normalize().toAbsolutePath();
                this.installationResolver = s -> invokerRequest
                        .installationDirectory()
                        .resolve(s)
                        .normalize()
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
Back to top