Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 247 for linkage (0.12 sec)

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

                        cppCompiler.args("-fPIC");
                    }
                }
            }
            hello(NativeLibrarySpec) {
                binaries.all {
                    lib library: 'greetings', linkage: 'static'
                }
            }
            main(NativeExecutableSpec) {
                binaries.all {
                    lib library: 'hello'
                }
            }
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_aix_ppc64.S

      .globl .crosscall_ppc64
      .csect crosscall_ppc64[DS]
    crosscall_ppc64:
      .llong .crosscall_ppc64, TOC[tc0], 0
      .csect .text[PR]
    .crosscall_ppc64:
    	// Start with standard C stack frame layout and linkage
    	mflr	0
    	std	0, 16(1)	// Save LR in caller's frame
    	std	2, 40(1)	// Save TOC in caller's frame
    	bl	saveregs
    	stdu	1, -296(1)
    
    	// Set up Go ABI constant registers
    	// Must match _cgo_reginit in runtime package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeLanguageIntegrationTest.groovy

                model {
                    components {
                        main(NativeExecutableSpec) {
                            sources {
                                ${helloWorldApp.sourceType}.lib library: "hello", linkage: "static"
                            }
                        }
                        hello(NativeLibrarySpec) {
                            binaries.withType(StaticLibraryBinarySpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.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
    - 8.5K bytes
    - Viewed (0)
  8. README.md

        plans to start removing things again, but officially, we're leaving our
        options open in case of surprises (like, say, a serious security problem).
    
    3.  Guava has one dependency that is needed for linkage at runtime:
        `com.google.guava:failureaccess:1.0.2`. It also has
        [some annotation-only dependencies][guava-deps], which we discuss in more
        detail at that link.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        from the root of the object graph, then this array can have multiple
        entries.
        TODO(silvasean): This design should be reconsidered after
        SavedModel/tf.Module and MLIR linkage semantics are better solidified.
        In particular, it would be great if we could assume a single exported name,
        and use the standardized MLIR `sym_name` attribute to hold it.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. test/linkname.go

    Matthew Dempsky <******@****.***> 1564084443 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 28 19:27:20 UTC 2019
    - 456 bytes
    - Viewed (0)
Back to top