Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 482 for linkage (0.15 sec)

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

                architecture "x86_64"
            }
        }
        components {
            exe(NativeExecutableSpec) {
                targetPlatform "x86"
                sources {
                    cpp.lib library: "hello", linkage: "static"
                }
            }
            hello(NativeLibrarySpec) {
                targetPlatform "x86"
            }
        }
    }
    """
    
            and:
            succeeds "exeExecutable"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

    apply plugin: 'c'
    
    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        components {
            main(NativeExecutableSpec) {
                binaries.all {
                    lib library: 'hello', linkage: 'static'
                }
            }
            hello(NativeLibrarySpec)
        }
    }
    """
    
            helloWorldApp.executable.writeSources(file("src/main"))
            helloWorldApp.library.writeSources(file("src/hello"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleSwiftProjectIntegrationTest.groovy

        def "can create xcode project for Swift static library"() {
            requireSwiftToolChain()
    
            given:
            buildFile << """
                apply plugin: 'swift-library'
                library.linkage = [Linkage.STATIC]
            """
            def lib = new SwiftLib()
            lib.writeToProject(testDirectory)
    
            when:
            succeeds("xcode")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 31.3K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

    """
            addGoogleTestDep()
        }
    
        private void addGoogleTestDep() {
            buildFile << """
    model {
        binaries {
            withType(GoogleTestTestSuiteBinarySpec) {
                lib library: "googleTest", linkage: "static"
                if (targetPlatform.operatingSystem.linux) {
                    cppCompiler.args '-pthread'
                    linker.args '-pthread'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r410/CppModelCrossVersionSpec.groovy

                rootProject.name = 'lib'
            """
            buildFile << """
                apply plugin: 'cpp-library'
                library {
                    baseName = 'some-lib'
                    linkage = [Linkage.STATIC, Linkage.SHARED]
                    privateHeaders.from = []
                    publicHeaders.from = ['include']
                    binaries.configureEach(CppSharedLibrary) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

                    (Attribute.of("linkage", SomeEnum)): SomeEnum.VALUE_1)
            def v2 = Stub(UsageContext)
            v2.name >> "v2"
            v2.attributes >> attributesTyped(
                    (Attribute.of("usage", String)): "runtime",
                    (Attribute.of("debuggable", Boolean)): true,
                    (Attribute.of("platform", Named)): platform,
                    (Attribute.of("linkage", SomeEnum)): SomeEnum.VALUE_2)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

    // An empty list means `op` is not exported.
    SmallVector<StringRef, 2> GetExportedNames(Operation *op);
    
    // Returns true if `op` is exported.
    bool IsExported(Operation *op);
    
    // Returns true if `module` has tf_saved_model linkage semantics.
    bool HasTfSavedModelSemantics(ModuleOp module_op);
    
    // Returns the tf_saved_model.global_tensor op that func's arg_index'th argument
    // refers to as a bound input, or null.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/internal/xcoff/xcoff.go

    	XMC_RO     = 1  // Read-only constant
    	XMC_DB     = 2  // Debug dictionary table
    	XMC_TC     = 3  // TOC entry
    	XMC_UA     = 4  // Unclassified
    	XMC_RW     = 5  // Read/Write data
    	XMC_GL     = 6  // Global linkage
    	XMC_XO     = 7  // Extended operation
    	XMC_SV     = 8  // 32-bit supervisor call descriptor
    	XMC_BS     = 9  // BSS class
    	XMC_DS     = 10 // Function descriptor
    	XMC_UC     = 11 // Unnamed FORTRAN common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                        linkTask.get().linkerArgs.add("-lc++")
                    }
                }
                project(':cppGreeter') {
                    apply plugin: 'cpp-library'
                    library.linkage = [Linkage.STATIC]
                }
            """
            swiftGreeter.writeToProject(file("hello"))
            cppGreeter.asLib().writeToProject(file("cppGreeter"))
            sumLibrary.writeToProject(file("app"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. src/runtime/rt0_aix_ppc64.s

    DEFINE_PPC64X_FUNCDESC(main, _main)
    TEXT _main(SB),NOSPLIT,$-8
    	MOVD $runtime·rt0_go(SB), R12
    	MOVD R12, CTR
    	BR (CTR)
    
    
    TEXT _rt0_ppc64_aix_lib(SB),NOSPLIT,$-8
    	// Start with standard C stack frame layout and linkage.
    	MOVD	LR, R0
    	MOVD	R0, 16(R1) // Save LR in caller's frame.
    	MOVW	CR, R0	   // Save CR in caller's frame
    	MOVD	R0, 8(R1)
    
    	MOVDU	R1, -344(R1) // Allocate frame.
    
    	// Preserve callee-save registers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top