Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 193 for commandline (0.34 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

            @Override
            @Nullable
            public Action<? super ExecutionListener> createAction(CommandLineParser parser, ParsedCommandLine commandLine) {
                if (commandLine.hasOption(HELP)) {
                    return new ShowUsageAction(parser);
                }
                if (commandLine.hasOption(VERSION)) {
                    return new ShowVersionAction();
                }
                return null;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.AbstractExecTask.xml

                </thead>
                <tr>
                    <td>args</td>
                </tr>
                <tr>
                    <td>argumentProviders</td>
                </tr>
                <tr>
                    <td>commandLine</td>
                </tr>
                <tr>
                    <td>executable</td>
                </tr>
                <tr>
                    <td>workingDir</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/converter/InitialPropertiesConverterTest.groovy

            def converter = new InitialPropertiesConverter()
            def parser = new CommandLineParser()
            converter.configure(parser)
            def commandLine = parser.parse("-Done=12", "-Dtwo")
            def result = converter.convert(commandLine)
    
            expect:
            result.requestedSystemProperties.size() == 2
            result.requestedSystemProperties.get("one") == "12"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/PropertiesLoaderIntegrationTest.groovy

            succeeds ':printSystemProp'
    
            then:
            outputContains('mySystemProp=properties file')
    
            when:
            args '-DmySystemProp=commandline'
            succeeds ':printSystemProp'
    
            then:
            outputContains('mySystemProp=commandline')
        }
    
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor) // needs to run Gradle from command line
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/BuildOptionBackedConverter.java

            buildOptions.commandLineConverter().configure(parser);
        }
    
        public void convert(ParsedCommandLine commandLine, Map<String, String> properties, T target) {
            buildOptions.propertiesConverter().convert(properties, target);
            buildOptions.commandLineConverter().convert(commandLine, target);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/InitialPropertiesConverter.java

            systemPropertiesCommandLineConverter.configure(parser);
        }
    
        public InitialProperties convert(ParsedCommandLine commandLine) {
            Map<String, String> requestedSystemProperties = systemPropertiesCommandLineConverter.convert(commandLine, new HashMap<>());
    
            return new InitialProperties() {
                @Override
                public Map<String, String> getRequestedSystemProperties() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/Exec.java

    /**
     * Executes a command line process. Example:
     * <pre class='autoTested'>
     * task stopTomcat(type:Exec) {
     *   workingDir '../tomcat/bin'
     *
     *   //on windows:
     *   commandLine 'cmd.exe', '/d', '/c', 'stop.bat'
     *
     *   //on linux
     *   commandLine './stop.sh'
     *
     *   //store the output instead of printing to the console:
     *   standardOutput = new ByteArrayOutputStream()
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInjection.groovy

            return []
        }
    
        static List<SystemPropertyInjection> all(String prop, String value) {
            return [
                commandLine(prop, value),
                gradleProperties(prop, value),
                clientJvmArgs(prop, value)
            ]
        }
    
        static SystemPropertyInjection commandLine(String prop, String value) {
            return new SystemPropertyInjection() {
                @Override
                String getDescription() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/sources/process/ProviderCompatibleJavaExecSpecTest.groovy

        def "spec sets commandLine on parameters"() {
            given:
            def parameters = newParameters()
            def command = ["some", "arguments"]
    
            when:
            (specUnderTest as JavaExecSpec).args(command)
            specUnderTest.copyToParameters(parameters)
    
            then:
            getSuffix(parameters.commandLine.get(), command.size()) == command
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. README.md

    You can also connect using any S3-compatible tool, such as the MinIO Client `mc` commandline tool. See
    [Test using MinIO Client `mc`](#test-using-minio-client-mc) for more information on using the `mc` commandline tool. For application developers,
    see <https://min.io/docs/minio/linux/developers/minio-drivers.html> to view MinIO SDKs for supported languages.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top