- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 33 for commandLine (0.05 sec)
-
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/ExtractAndroidStudioTask.kt
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 19 08:02:04 UTC 2025 - 3.7K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java
.append("\", family: \"") .append(Os.OS_FAMILY) .append('\"'); // Add process information using modern Java API if (commandLine != null) { version.append(ls).append("Command line: ").append(commandLine); } if (terminal != null) { version.append(ls).append("Terminal: ").append(terminal); } return version.toString(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 7.3K bytes - Viewed (0) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt
val execOutput = providers.exec { workingDir = projectDir isIgnoreExitValue = true commandLine = listOf("git", *args) if (OperatingSystem.current().isWindows) { commandLine = listOf("cmd.exe", "/d", "/c") + commandLine } } return execOutput.result.zip(execOutput.standardOutput.asText) { result, outputText ->Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jul 26 10:02:49 UTC 2024 - 2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
} public CommandLine parse(String[] args) throws ParseException { // We need to eat any quotes surrounding arguments... String[] cleanArgs = CleanArgument.cleanArgs(args); DefaultParser parser = DefaultParser.builder() .setDeprecatedHandler(usedDeprecatedOptions::add) .build(); CommandLine commandLine = parser.parse(options, cleanArgs);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt
fun ExecOperations.execAndGetStdout(workingDir: File, ignoreExitValue: Boolean, vararg args: String): String { val out = ByteArrayOutputStream() exec { isIgnoreExitValue = ignoreExitValue commandLine(*args) standardOutput = out this.workingDir = workingDir } return out.toString().trim() }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon May 19 11:33:57 UTC 2025 - 965 bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/utils/CLIReportingUtils.java
.append("\", family: \"") .append(Os.OS_FAMILY) .append('\"'); // Add process information using modern Java API if (commandLine != null) { version.append(ls).append("Command line: ").append(commandLine); } if (terminal != null) { version.append(ls).append("Terminal: ").append(terminal); } return version.toString(); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Feb 10 15:02:53 UTC 2025 - 6.8K bytes - Viewed (0) -
impl/maven-core/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar
public boolean equals(Object); public int hashCode(); } org/codehaus/plexus/util/cli/Commandline$Argument.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Argument { private String[] parts; public void Commandline$Argument(); public void setValue(String); public void setLine(String); public void setFile(java.io.File); public String[] getParts(); } org/codehaus/plexus/util/cli/Commandline$Marker.class package org.codehaus.plexus.util.cli; public synchronized class Commandline$Marker...
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 164.6K bytes - Viewed (0) -
docs/docker/README.md
To start a stopped container, you can use the [`docker start`](https://docs.docker.com/engine/reference/commandline/start/) command. ```sh docker start <container_id> ``` To stop a running container, you can use the [`docker stop`](https://docs.docker.com/engine/reference/commandline/stop/) command. ```sh docker stop <container_id> ``` ### MinIO container logs
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ModelVersionProcessor.java
import java.util.Properties; import org.apache.maven.model.building.ModelBuildingRequest; /** * Allows a fixed set of properties that are valid inside a version and that could be overwritten for example on the * commandline * * @deprecated use {@code org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ModelVersionProcessor { /** * @param property the property to checkRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 1.7K bytes - Viewed (0) -
.teamcity/.mvn/wrapper/maven-wrapper.jar
onStartOption(String, String); } org/apache/maven/wrapper/cli/CommandLineParser$AfterOptions.class package org.apache.maven.wrapper.cli; synchronized class CommandLineParser$AfterOptions extends CommandLineParser$ParserState { private final ParsedCommandLine commandLine; private void CommandLineParser$AfterOptions(ParsedCommandLine); public boolean maybeStartOption(String); public CommandLineParser$OptionParserState onStartOption(String, String); public CommandLineParser$ParserState onNonOption(String); } org/...Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Feb 26 01:48:39 UTC 2020 - 49.5K bytes - Viewed (0)