Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,359 for executable_ (0.23 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/tests/projectInfoTask.sample.conf

    commands: [{
        executable: gradle
        args: -q projectInfo --format plain
        expected-output-file: plain.out
    },
    {
        executable: gradle
        args: -q projectInfo --format json
        expected-output-file: json.out
    },
    {
        executable: gradle
        args: -q help --task projectInfo
        expected-output-file: help.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 317 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/componentMetadataRules.sample.conf

    commands: [{
        executable: gradle
        args: compileClasspathArtifacts
        flags: --quiet
        expected-output-file: compileClasspathArtifacts.out
    },{
        executable: gradle
        args: runtimeClasspathArtifacts
        flags: --quiet
        expected-output-file: runtimeClasspathArtifacts.out
    },{
        executable: gradle
        args: failRuntimeClasspathResolve
        flags: --quiet
        expect-failure: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 489 bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/MinimalJavaCompilerDaemonForkOptions.java

            setJvmArgs(forkOptions.getAllJvmArgs());
        }
    
        @Nullable
        public String getExecutable() {
            return executable;
        }
    
        public void setExecutable(@Nullable String executable) {
            this.executable = executable;
        }
    
        @Nullable
        public String getTempDir() {
            return tempDir;
        }
    
        public void setTempDir(@Nullable String tempDir) {
            this.tempDir = tempDir;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/TestingNativeComponentReportIntegrationTest.groovy

            flavor: flavor 'default'
            target platform: platform '$currentNative'
            component under test: native executable 'someExe'
            binary under test: executable 'someExe:executable'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExeTest/someExeTest
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ImplementationChanges.java

            this.executable = executable;
        }
    
        @Override
        public boolean accept(ChangeVisitor visitor) {
            if (!currentImplementation.getClassIdentifier().equals(previousImplementation.getClassIdentifier())) {
                return visitor.visitChange(new DescriptiveChange("The type of %s has changed from '%s' to '%s'.",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/toolchain-config-task/kotlin/build.gradle.kts

    
    // tag::java-executable[]
    // tag::java-home[]
    val launcher = javaToolchains.launcherFor {
        languageVersion = JavaLanguageVersion.of(11)
    }
    // end::java-executable[]
    // end::java-home[]
    
    // tag::java-executable[]
    
    tasks.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
    - 3.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/InputValueChanges.java

    import java.util.Map;
    
    class InputValueChanges implements ChangeContainer {
        private final Describable executable;
        private final ImmutableMap<String, String> changed;
    
        public InputValueChanges(ImmutableSortedMap<String, ValueSnapshot> previous, ImmutableSortedMap<String, ValueSnapshot> current, Describable executable) {
            ImmutableMap.Builder<String, String> changedBuilder = ImmutableMap.builder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftBasePluginTest.groovy

        }
    
        def "adds link and install task for executable"() {
            def executable = Stub(DefaultSwiftExecutable)
            def executableFile = project.objects.fileProperty()
            executable.name >> name
            executable.names >> Names.of(name)
            executable.module >> Providers.of("TestApp")
            executable.baseName >> Providers.of("test_app")
            executable.executableFile >> executableFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top