Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 145 for commandline (0.13 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        }
    
        ExecutionResult runViaUnixStartScript(TestFile startScriptDir) {
            buildFile << """
    task execStartScript(type: Exec) {
        workingDir '$startScriptDir.canonicalPath'
        commandLine './sample'
        environment JAVA_OPTS: ''
    }
    """
            return succeeds('execStartScript')
        }
    
        ExecutionResult runViaUnixStartScriptWithJavaHome(String javaHome) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/counter/counter.go

    // the concatenation of prefix and the flag name.
    //
    //	For instance, CountFlags("gopls/flag:", *flag.CommandLine)
    func CountFlags(prefix string, fs flag.FlagSet) {
    	fs.Visit(func(f *flag.Flag) {
    		New(prefix + f.Name).Inc()
    	})
    }
    
    // CountCommandLineFlags creates a counter for every flag
    // that is set in the default flag.CommandLine FlagSet using
    // the counter name binaryName+"/flag:"+flagName where
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 18:02:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/process/internal/CancellationIntegrationTest.groovy

                    dependsOn 'compileJava'
                    commandLine '${fileToPath(Jvm.current().javaExecutable)}', '-cp', '${fileToPath(file('build/classes/java/main'))}', 'Block'
                }
    
                task projectExecTask {
                    dependsOn 'compileJava'
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 04:31:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginConfigurationIntegrationTest.groovy

            run("installDist")
    
            def out = new ByteArrayOutputStream()
            def executer = new ScriptExecuter()
            executer.workingDir = testDirectory
            executer.standardOutput = out
            executer.commandLine = "build/install/test/bin/test"
            def result = executer.run()
            then:
            result.assertNormalExitValue()
            out.toString() == TextUtil.toPlatformLineSeparators("all good\n")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top