Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 298 for Executable (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ScriptExecuter.groovy

            if (OperatingSystem.current().isWindows()) {
                def theArgs = ['/d', '/c', executable.replace('/', File.separator)] + getArgs()
                setArgs(theArgs) //split purposefully to avoid weird windows CI issue
                executable = 'cmd.exe'
            } else {
                executable = "${workingDir}/${executable}"
            }
            builder.environment("JAVA_HOME", System.getProperty("java.home"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/NativeComponentReportOutputNormalizerTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            static library file: build/libs/hello/static/libhello.a
    
    Native executable 'main'
    ------------------------
    
    Source sets
        C++ source 'main:cpp'
            srcDir: src/main/cpp
    
    Binaries
        Executable 'main:executable'
            build using task: :mainExecutable
            install using task: :installMainExecutable
            build type: build type 'debug'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

            public File executable;
    
            @Override
            public CompilerExecSpec environment(String key, String value) {
                environments.put(key, value);
                return this;
            }
    
            @Override
            public CompilerExecSpec executable(File executable) {
                this.executable = executable;
                return this;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

                task runWithJavaExec {
                    dependsOn sourceSets.main.runtimeClasspath
                    doLast {
                        project.javaexec {
                            if (run.executable) {
                                executable run.executable
                            }
                            classpath = run.classpath
                            mainClass = run.mainClass
                            args run.args
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top