Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,359 for Executable (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/os/exec/lp_wasm.go

    //go:build wasm
    
    package exec
    
    import (
    	"errors"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in $PATH")
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    // If file contains a slash, it is tried directly and the PATH is not consulted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 1012 bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocExecHandleBuilder.java

            execAction.workingDir(execDirectory);
            execAction.executable(GUtil.getOrDefault(executable, () -> Jvm.current().getJavadocExecutable()));
            execAction.args("@" + optionsFile.getAbsolutePath());
    
            options.contributeCommandLineOptions(execAction);
    
            return execAction;
        }
    
        public String getExecutable() {
            return executable;
        }
    
        public void setExecutable(String executable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/DefaultVswhereVersionLocatorTest.groovy

        }
    
        def "finds vswhere executable in system path"() {
            given:
            vswhereInPath()
    
            expect:
            locator.getVswhereInstall().absolutePath == vswhere.absolutePath
        }
    
        def "finds vswhere executable in system path if vswhere executable in Program Files is not a file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top