Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Commandline (0.05 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/CommonsCliUpgradeOptions.java

        }
    
        protected CommonsCliUpgradeOptions(String source, CLIManager cliManager, CommandLine commandLine) {
            super(source, cliManager, commandLine);
        }
    
        @Override
        @Nonnull
        public Optional<List<String>> goals() {
            if (!commandLine.getArgList().isEmpty()) {
                return Optional.of(commandLine.getArgList());
            }
            return Optional.empty();
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Sep 29 14:48:39 UTC 2025
    - 7K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/CommonsCliShellOptions.java

        protected CommonsCliShellOptions(String source, CLIManager cliManager, CommandLine commandLine) {
            super(source, cliManager, commandLine);
        }
    
        @Override
        protected CommonsCliShellOptions copy(
                String source, CommonsCliOptions.CLIManager cliManager, CommandLine commandLine) {
            return new CommonsCliShellOptions(source, (CLIManager) cliManager, commandLine);
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

    import java.util.Properties;
    
    import org.apache.commons.cli.CommandLine;
    import org.apache.maven.execution.DefaultMavenExecutionRequest;
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.codehaus.plexus.classworlds.ClassWorld;
    
    /**
     * CliRequest
     */
    @Deprecated
    public class CliRequest {
        String[] args;
    
        CommandLine commandLine;
    
        ClassWorld classWorld;
    
        String workingDirectory;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/CommonsCliEncryptOptions.java

        }
    
        protected CommonsCliEncryptOptions(String source, CLIManager cliManager, CommandLine commandLine) {
            super(source, cliManager, commandLine);
        }
    
        @Override
        public Optional<Boolean> force() {
            if (commandLine.hasOption(CLIManager.FORCE)) {
                return Optional.of(Boolean.TRUE);
            }
            return Optional.empty();
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Sep 25 17:39:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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 check
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. internal/s3select/jstream/README.md

    jstream.KV{desc RGB}
    jstream.KV{colors [red green blue]}
    jstream.KV{desc CMYK}
    jstream.KV{colors [cyan magenta yellow black]}
    ```
    
    ## Installing 
    
    ```bash
    go get github.com/bcicen/jstream
    ```
    
    ## Commandline
    
    `jstream` comes with a cli tool for quick viewing of parsed values from JSON input:
    
    ```bash
    jstream -d 1 < input.json
    ```
    
    ```json
    {"colors":["red","green","blue"],"desc":"RGB"}
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Mon Sep 23 19:35:41 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. README.md

    You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool:
    
    ```sh
    mc alias set local http://localhost:9000 minioadmin minioadmin
    mc admin info local
    ```
    
    See [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Wed Dec 03 08:13:11 UTC 2025
    - 9K bytes
    - Viewed (0)
Back to top