Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 225 for Executable (0.33 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeBinariesIntegrationTest.groovy

            then:
            executedAndNotSkipped ":main${NativePlatformsTestFixture.defaultPlatformName.capitalize()}Executable"
            notExecuted ":mainUnknownExecutable"
    
            and:
            executable("build/exe/main/${NativePlatformsTestFixture.defaultPlatformName}/main").assertExists()
            executable("build/exe/main/unknown/main").assertDoesNotExist()
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftApplicationIntegrationTest.groovy

        }
    
        def "can build debug and release variant of the executable"() {
            given:
            def app = new SwiftAppWithOptionalFeature()
            def debugBinary = executable("build/exe/main/debug/App")
            def releaseBinary = executable("build/exe/main/release/App")
            settingsFile << "rootProject.name = 'app'"
            app.writeToProject(testDirectory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:43:37 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/get_compiler_ir.cc

        case IrExportStage::OPTIMIZED_HLO:
        case IrExportStage::OPTIMIZED_HLO_SERIALIZED: {
          TF_ASSIGN_OR_RETURN(std::unique_ptr<xla::LocalExecutable> executable,
                              BuildExecutable(local_client, result, options));
          xla::Executable* new_executable = executable->executable();
          if (stage == IrExportStage::OPTIMIZED_HLO_SERIALIZED) {
            return new_executable->module().ToProto().SerializeAsString();
          } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        snapshot_ptrs.emplace(p.first,
                              p.second.has_value() ? &p.second.value() : nullptr);
      }
    
      const xla::HloInputOutputAliasConfig& input_output_alias =
          executable->executable()->module().input_output_alias_config();
      absl::StatusOr<std::vector<xla::ExecutionInput>> execution_inputs =
          launch_context.PopulateInputs(ctx, result, snapshot_ptrs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/tasks/compile/JavaCompileTest.groovy

            def javaCompile = project.tasks.create("compileJava", JavaCompile)
            javaCompile.destinationDirectory.set(new File("tmp"))
            def executable = Jvm.current().javacExecutable.absolutePath
    
            when:
            javaCompile.options.fork = true
            javaCompile.options.forkOptions.executable = executable
            def spec = javaCompile.createSpec()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/Jvm.java

            File executable = commandLocation(command);
            if (executable.isFile()) {
                return executable;
            }
    
            if (userSupplied) { //then we want to validate strictly
                throw new JavaHomeException(String.format("The supplied javaHome seems to be invalid."
                    + " I cannot find the %s executable. Tried location: %s", command, executable.getAbsolutePath()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:57:34 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/kernels/xla_ops.cc

      if (run_synchronous) {
        execution_output =
            executable->Run(std::move(execution_inputs), run_options);
      } else {
        execution_output =
            executable->RunAsync(std::move(execution_inputs), run_options);
      }
    
      auto elapsed = env->NowMicros() - start_time;
      VLOG(2) << "Elapsed time for Xla Executable Run: " << elapsed << "us";
      return execution_output;
    }
    
    absl::StatusOr<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationIntegrationTest.groovy

            executable("build/exe/main/debug/app").assertExists()
            executable("build/exe/main/debug/app").assertHasDebugSymbolsFor(app.sourceFileNamesWithoutHeaders)
            installation("build/install/main/debug").exec().out == app.withFeatureDisabled().expectedOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can use executable file as task dependency"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 19:11:01 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            when:
            succeeds "mainExecutable"
    
            then:
            executable("build/exe/main/main").exec().out == app.englishOutput
        }
    
        @ToBeFixedForConfigurationCache
        def "can use map notation to reference library in different project"() {
            given:
            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top