Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,359 for Executable (0.15 sec)

  1. 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)
  2. 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)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIncrementalBuildIntegrationTest.groovy

            and:
            executable.assertHasChangedSince(snapshot)
        }
    
        @ToBeFixedForConfigurationCache
        def "relinks binary but does not recompile when linker option changed"() {
            given:
            run "mainExecutable"
    
            when:
            def executable = executable("build/exe/main/main")
            def snapshot = executable.snapshot()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativePlatformSamplesIntegrationTest.groovy

            then:
            final debugX86 = executable(variants.dir.file("build/exe/main/x86/debug/main"))
            final releaseX86 = executable(variants.dir.file("build/exe/main/x86/release/main"))
            final debugX64 = executable(variants.dir.file("build/exe/main/x64/debug/main"))
            final releaseX64 = executable(variants.dir.file("build/exe/main/x64/release/main"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_executable_persistor_test.cc

      MockXlaCompilerClient mock_client;
      TF_ASSERT_OK_AND_ASSIGN(auto executable, BuildSampleExecutable());
      TF_EXPECT_OK(persistor.TryToPersistExecutable(
          /*signature_hash=*/123, "signature_string", DefaultXlaOptions(),
          compilation_result_add_, *executable, &mock_client));
    
      auto key =
          CreateCacheKey(/*signature_hash=*/123, compilation_result_add_,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

            then:
            executable("build/exe/main/x86/main").arch.name == "x86"
            executable("build/exe/main/x86/main").exec().out == "i386 ${os.familyName}" * 2
            binaryInfo(objectFileFor(file("src/main/cpp/main.cpp"), "build/objs/main/x86/mainCpp")).arch.name == "x86"
    
            executable("build/exe/main/x86_64/main").arch.name == "x86-64"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K 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