Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,359 for Executable (0.27 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.h

                     xla::PjRtLoadedExecutable** executable);
    
      Status Run(const ResourceVarsSnapshot& variable_args,
                 const XlaCompiler::CompilationResult* result,
                 const DeviceCompiler<xla::LocalExecutable, xla::LocalClient>*
                     xla_device_compiler,
                 xla::LocalExecutable* executable, OpKernelContext* ctx);
    
      const XlaPlatformInfo platform_info_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibraryTest.groovy

     */
    class SwiftAppWithLibraryTest implements AppElement {
        final SwiftLibWithXCTest library = new SwiftLibWithXCTest()
        final SwiftAppWithDep executable = new SwiftAppWithDep(library.main, library.main)
    
        @Override
        String getExpectedOutput() {
            return executable.expectedOutput
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/DuplicateBaseNamesIntegrationTest.groovy

                targetPlatform "x86"
                binaries.all {
                    linker.args "-v"
                }
            }
        }
    }
                """
            then:
            succeeds "mainExecutable"
            executable("build/exe/main/main").exec().out == expectedOutput
            where:
            testAppType                                   | expectedOutput
            DuplicateCBaseNamesTestApp.simpleName         | "foo1foo2"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolchainCustomizationIntegTest.groovy

        def helloWorldApp = new CppHelloWorldApp()
    
        @ToBeFixedForConfigurationCache
        def "can add action to tool chain that modifies tool arguments prior to execution"() {
            when:
            helloWorldApp.executable.writeSources(file("src/main"))
            helloWorldApp.writeSources(file("src/main"))
            buildFile << """
    apply plugin: 'cpp'
    
    model {
        toolChains {
            ${toolChain.id} {
                eachPlatform {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibrary.groovy

     */
    class SwiftAppWithLibrary implements AppElement {
        final library = new SwiftLib()
        final executable = new SwiftAppWithDep(library, library)
    
        @Override
        String getExpectedOutput() {
            return executable.expectedOutput
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 984 bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

            public XCTestProcessor(Clock clock, File executable, File workingDir, ExecHandleBuilder execHandleBuilder, IdGenerator<?> idGenerator, String rootTestSuiteId) {
                this.execHandleBuilder = execHandleBuilder;
                this.idGenerator = idGenerator;
                this.clock = clock;
                this.rootTestSuiteId = rootTestSuiteId;
                execHandleBuilder.executable(executable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetCompileDependenciesIntegrationTest.groovy

                        lib library: 'lib2', linkage: 'api'
                    }
                }
            }
        }
    }
    """
    
            when:
            succeeds "mainExecutable"
    
            then:
            executable("build/exe/main/main").exec().out == "12\n"
        }
    
        @ToBeFixedForConfigurationCache
        def "dependencies of language source set added to binary are not shared when compiling"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/AbstractSwiftMixedLanguageIntegrationTest.groovy

            return new NativeInstallationFixture(file(installDir), os)
        }
    
        ExecutableFixture executable(Object path) {
            return swiftToolChain.executable(file(path))
        }
    
        SharedLibraryFixture swiftLibrary(Object path) {
            return swiftToolChain.sharedLibrary(file(path))
        }
    
        SharedLibraryFixture cppLibrary(Object path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top