Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 235 for Executable (0.14 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                config += "             platformToolChain.cCompiler.executable='i686-pc-cygwin-gcc.exe'\n";
                config += "             platformToolChain.cppCompiler.executable='i686-pc-cygwin-g++.exe'\n";
                config += "             platformToolChain.linker.executable='i686-pc-cygwin-g++.exe'\n";
                config += "             platformToolChain.assembler.executable='i686-pc-cygwin-gcc.exe'\n";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    installTask.getToolChain().set(executable.getToolChain());
                    installTask.getTargetPlatform().set(binary.getTargetPlatform());
                    installTask.getExecutableFile().set(executable.getFile());
                    installTask.getInstallDirectory().set(installation.getDirectory());
                    //TODO:HH wire binary libs via executable
                    installTask.lib(new BinaryLibs(binary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

                }
            }
    
            then:
            NativeExecutableSpec executable = single(components.values()) as NativeExecutableSpec
            NativeExecutableBinarySpec executableBinary = single(binaries) as NativeExecutableBinarySpec
            with(executableBinary) {
                name == 'executable'
                component == executable
                toolChain.name == "tc"
                targetPlatform.name == "platform"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioMultiProjectIntegrationTest.groovy

            mainSolution.assertReferencesProject(twoProject, projectConfigurations)
        }
    
        @ToBeFixedForConfigurationCache
        def "create visual studio solution for executable that depends on a library in another project"() {
            when:
            app.executable.writeSources(file("exe/src/main"))
            app.library.writeSources(file("lib/src/main"))
    
            createDirs("exe", "lib")
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compiler.h

    //
    // Caches the compiled XlaCompilationResult and Executable using a
    // DeviceCompilationCache. Compilation is done only when there's a cache miss.
    //
    // Uses the DeviceExecutablePersistor class for persistence and tries to load a
    // serialized executable from disk upon a request for compilation. If the
    // appropriate executable isn't found on disk, compiles the given Tensorflow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_compiler_test.cc

      xla::LocalExecutable* xla_executable = nullptr;
    
      // Persist an executable.
      TF_EXPECT_OK(xla_device_compiler->CompileIfNeeded(
          options, fn, args, XlaCompiler::CompileOptions{},
          DeviceCompileMode::kStrict, profiler_, &compilation_result,
          &xla_executable));
    
      // Corrupt the file which contains the serialized executable.
      std::vector<string> files;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

        def "generator task produces sources for dependent source set with headers only"() {
            given:
            // Write sources to src/main, headers to src/input
            def app = new CHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.sourceFiles*.writeToDir(file("src/main"))
            app.library.headerFiles*.writeToDir(file("src/input"))
            degenerateInputSources()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            }
        }
    }
    '''
    
            when:
            run 'installDist'
    
            def builder = new ScriptExecuter()
            builder.workingDir file('build/install/application/bin')
            builder.executable "application"
            if (OperatingSystem.current().windows) {
                builder.environment('APPLICATION_OPTS', '-DtestValue=value -DtestValue2="some value" -DtestValue3="some value"')
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testshared/shared_test.go

    	globalSkip(t)
    	goCmd(t, "install", "-linkshared", "./division")
    	run(t, "division executable", "../../bin/division")
    }
    
    // Build an executable that uses cgo linked against the shared runtime and check it
    // runs.
    func TestCgoExecutable(t *testing.T) {
    	globalSkip(t)
    	goCmd(t, "install", "-linkshared", "./execgo")
    	run(t, "cgo executable", "../../bin/execgo")
    }
    
    func checkPIE(t *testing.T, name string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_launch_util.h

    DeviceType GetDeviceType(OpKernelContext* ctx);
    
    // Runs `executable` and populates the outputs in `ctx`. `inputs` and
    // `variables` are the input arguments to the computation, usually read from the
    // OpKernelContext, `ctx`. Requires the device-appropriate `pjrt_client` and the
    // `compilation_result` used to build the `executable`.
    Status RunPjRtExecutable(
        const std::vector<const Tensor*>& inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top