Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,294 for Executable (1.23 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/topLevel/tests/fixed.sample.conf

    commands: [{
        executable: gradle
        args: listFilesFixed
        flags: "--rerun-tasks --quiet"
        expected-output-file: fixed.out
    }, {
        executable: gradle
        args: listFilesFixed
        flags: "--rerun-tasks --quiet"
        expected-output-file: fixed.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 259 bytes
    - Viewed (0)
  2. src/os/executable_procfs.go

    	"internal/stringslite"
    	"runtime"
    )
    
    func executable() (string, error) {
    	var procfn string
    	switch runtime.GOOS {
    	default:
    		return "", errors.New("Executable not implemented for " + runtime.GOOS)
    	case "linux", "android":
    		procfn = "/proc/self/exe"
    	case "netbsd":
    		procfn = "/proc/curproc/exe"
    	}
    	path, err := Readlink(procfn)
    
    	// When the executable has been deleted then Readlink returns a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 05 00:26:04 UTC 2024
    - 715 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/customPlugins/customPlugin/tests/customPlugin.sample.conf

    # tag::cli[]
    # gradle --quiet hello
    # end::cli[]
    commands: [{
        executable: gradle
        args: hello
        flags: --quiet
        expected-output-file: customPlugin.out
    }, {
        executable: gradle
        args: hi
        flags: --quiet
        expected-output-file: customPluginScript.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 22:35:53 UTC 2024
    - 275 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/MultipleNativeToolChainIntegrationTest.groovy

            def executable = file(OperatingSystem.current().getScriptName(path))
            executable.assertExists()
            assert executable.execute([], toolChain.runtimeEnv).out == helloWorld.expectedOutput(toolChain)
            return true
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/DefaultNativeExecutableBinarySpecTest.groovy

        def namingScheme = DefaultBinaryNamingScheme.component("bigOne").withBinaryType("executable")
        def tasks = new DefaultNativeExecutableBinarySpec.DefaultTasksCollection(new DefaultBinaryTasksCollection(null, null, CollectionCallbackActionDecorator.NOOP))
    
        def "has useful string representation"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalTask/tests/incrementalTaskChangedProperty.sample.conf

    # tag::cli[]
    # gradle --quiet -PtaskInputProperty=changed incrementalReverse
    # end::cli[]
    
    commands: [{
        executable: gradle
        args: originalInputs incrementalReverse
        flags: --quiet
    }, {
        executable: gradle
        args: incrementalReverse
        flags: "--quiet -PtaskInputProperty=changed"
        expected-output-file: incrementalTaskChangedProperty.out
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 394 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

    public interface ExecSpec extends BaseExecSpec {
        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
         * @param args the command plus the args to be executed
         * @since 4.0
         */
        void setCommandLine(List<String> args);
    
        /**
         * Sets the full command line, including the executable to be executed plus its arguments.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/toolchainFiltersWithoutCC.sample.conf

    commands:[{
        executable: gradle
        args: "build -DtestToolchain=knownVendor"
    }, {
        executable: gradle
        args: "build -DtestToolchain=matchingVendor"
        expect-failure: true  # The matching vendor uses a dummy vendor string that is never matched
        expected-output-file: matchingVendorWithoutCC.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 346 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-declaringCapabilities/tests/declaring-capabilities.sample.conf

    commands: [{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j"
        flags: "--quiet"
        expected-output-file: dependencyReport.out
        expect-failure: false
    },{
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency log4j -Preplace"
        flags: "--quiet"
        expected-output-file: dependencyReportReplaced.out
        expect-failure: false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 436 bytes
    - Viewed (0)
Back to top