Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,359 for Executable (0.19 sec)

  1. platforms/documentation/docs/src/snippets/java/fixtures/tests/javaTestFixtures.sample.conf

    commands: [{
        executable: gradle
        args: dependencyInsight --configuration functionalTestClasspath --dependency gson
        expected-output-file: dependencyInsight.out
        allow-additional-output: true
    },{
        execution-subdirectory: lib
        executable: gradle
        args: usages
        expected-output-file: usages.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 354 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/toolchainFiltersWithCC.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: matchingVendorWithCC.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 343 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/tests/incrementalBuildUpToDateWhen.sample.conf

    commands: [{
        executable: gradle
        args: clean alwaysInstrumentClasses
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: alwaysInstrumentClasses
        expected-output-file: incrementalBuildUpToDateWhenAgain.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
    - 340 bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/build.gradle.kts

    }
    
    val executableJar by tasks.registering(Jar::class) {
        archiveFileName = "gradle-wrapper-executable.jar"
        manifest {
            attributes.remove(Attributes.Name.IMPLEMENTATION_VERSION.toString())
            attributes(Attributes.Name.IMPLEMENTATION_TITLE.toString() to "Gradle Wrapper")
        }
        from(layout.projectDirectory.dir("src/executable/resources"))
        from(sourceSets.main.get().output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/requiringFeaturesFromExternalRepo.sample.conf

    commands: [{
        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration compileClasspath --dependency mongo"
        expected-output-file: compileClasspath.out
    },{
        execution-subdirectory: project
        executable: gradle
        args: "dependencyInsight --configuration runtimeClasspath --dependency mongo"
        expected-output-file: runtimeClasspath.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 396 bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                apply plugin: 'java'
    
                task execTask(type: Exec) {
                    dependsOn sourceSets.main.runtimeClasspath
                    def testFile = file("${'$'}buildDir/${'$'}name")
                    executable = Jvm.current().getJavaExecutable()
                    args '-cp', sourceSets.main.runtimeClasspath.asPath, 'org.gradle.TestMain', projectDir, testFile
                    doLast {
                        assert testFile.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. platforms/software/signing/src/testFixtures/groovy/org/gradle/test/fixtures/GpgCmdFixture.groovy

            properties.load(buildDir.file('gradle.properties').newInputStream())
            GpgCmdAndVersion client = getAvailableGpg()
            assert client
            properties.put('signing.gnupg.executable', client.executable)
            properties.put('signing.gnupg.useLegacyGpg', (client.version == 1).toString())
            properties.put('signing.gnupg.homeDir', gpgHomeSymlink.toAbsolutePath().toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compiler_disable_test.cc

      EXPECT_FALSE(status.ok());
      EXPECT_TRUE(absl::StrContains(status.message(), "XLA compilation disabled"));
    
      // Check that async compilation is disallowed.
      status = xla_device_compiler->CompileIfNeeded(
          XlaCompiler::Options{}, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kAsync, profiler, &compilation_result, &executable);
      EXPECT_FALSE(status.ok());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/pjrt_compile_util.cc

        bool may_alias_resource_update, FunctionLibraryRuntime* flr,
        ResourceMgr* rm, const XlaCompiler::CompilationResult** compilation_result,
        xla::PjRtClient** client, xla::PjRtLoadedExecutable** executable) {
      PjRtDeviceCompiler* pjrt_device_compiler;
      DeviceCompilationProfiler* profiler;
      TF_RETURN_IF_ERROR(GetOrCreatePjRtDeviceCompilerAndProfiler(
          platform_info, rm, flr, &pjrt_device_compiler, &profiler));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskJdkRelocationIntegrationTest.groovy

                test {
                    executable "${TextUtil.escapeString(originalJavaExecutable)}"
                }
    
                afterEvaluate {
                    println "Running with JDK: \$test.executable"
                }
            """
        }
    
        @Override
        protected void moveFilesAround() {
            buildFile << """
                test {
                    executable "${TextUtil.escapeString(differentJavaExecutable)}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top