Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,070 for Executable (0.29 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

        private static ChangeContainer errorHandling(Describable executable, ChangeContainer wrapped) {
            return new ErrorHandlingChangeContainer(executable, wrapped);
        }
    
        private static InputFileChanges errorHandling(Describable executable, InputFileChanges wrapped) {
            ErrorHandlingChangeContainer errorHandlingChangeContainer = new ErrorHandlingChangeContainer(executable, wrapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/clean_binary.txt

    # Build something to create the executable, including several cases
    [short] skip
    
    # --------------------- clean executables -------------------------
    
    # case1: test file-named executable 'main'
    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/toolingApi/customModel/tests/sanityCheck.sample.conf

    commands: [{
        execution-subdirectory: plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: sample-build
        executable: gradle
        args: tasks
    },{
        execution-subdirectory: tooling
        executable: gradle
        args: tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 255 bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactory.java

            private final File executable;
    
            private DefaultCommandLineGroovyJavaJointCompileSpec(File executable) {
                this.executable = executable;
            }
    
            @Override
            public File getExecutable() {
                return executable;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/tests/check.sample.conf

    commands: [{
        executable: gradle
        args: check
    }, {
        executable: gradle
        args: greet -q
        expected-output-file: greet.out
    }, {
        executable: gradle
        args: run -q
        expected-output-file: run.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 217 bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecFactory.java

            private final File executable;
    
            private DefaultCommandLineJavaSpec(File executable) {
                this.executable = executable;
            }
    
            @Override
            public File getExecutable() {
                return executable;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/SymbolExtractorOsConfig.java

        };
    
        private static final OperatingSystem OS = OperatingSystem.current();
    
        private final String executable;
        private final List<String> arguments;
        private final String extension;
    
        SymbolExtractorOsConfig(String executable, List<String> arguments, String extension) {
            this.executable = executable;
            this.arguments = arguments;
            this.extension = extension;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/toolchain-config-task/groovy/build.gradle

    
    // tag::java-executable[]
    // tag::java-home[]
    def launcher = javaToolchains.launcherFor {
        languageVersion = JavaLanguageVersion.of(11)
    }
    // end::java-executable[]
    // end::java-home[]
    
    
    // tag::java-executable[]
    
    tasks.named('sampleTask') {
        javaExecutable = launcher.map { it.executablePath }
    }
    // end::java-executable[]
    
    
    // tag::java-home[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/ForkOptions.java

            return executable;
        }
    
        /**
         * Sets the compiler executable to be used.
         * <p>
         * Only takes effect if {@code CompileOptions.fork} is {@code true}. Defaults to {@code null}.
         * <p>
         * Setting the executable disables task output caching.
         */
        public void setExecutable(@Nullable String executable) {
            this.executable = executable;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/JavaExecTest.groovy

            cause.message.contains("The configured executable does not exist")
            cause.message.contains(invalidExecutable.absolutePath)
        }
    
        def 'fails if custom executable is a directory'() {
            def task = project.tasks.create("run", JavaExec)
            def executableDir = temporaryFolder.createDir("javac")
    
            when:
            task.executable = executableDir.absolutePath
            execute(task)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top