Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for linking (2.14 sec)

  1. src/runtime/rt0_linux_mips64x.s

    #ifdef GOARCH_mips64
    	MOVW	4(R29), R4 // argc, big-endian ABI places int32 at offset 4
    #else
    	MOVW	0(R29), R4 // argc
    #endif
    	ADDV	$8, R29, R5 // argv
    	JMP	main(SB)
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	// in external linking, glibc jumps to main with argc in R4
    	// and argv in R5
    
    	// initialize REGSB = PC&0xffffffff00000000
    	BGEZAL	R0, 1(PC)
    	SRLV	$32, R31, RSB
    	SLLV	$32, RSB
    
    	MOVV	$runtime·rt0_go(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 1014 bytes
    - Viewed (0)
  2. tensorflow/c/experimental/next_pluggable_device/BUILD

            "@local_xla//xla/pjrt/c:pjrt_c_api_helpers",
            "@local_xla//xla/tsl/distributed_runtime/coordination:coordination_service_agent",
        ],
    )
    
    # Plugin should include this target to avoid linking the C API implementation.
    cc_library(
        name = "c_api_hdrs",
        hdrs = ["c_api.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/c:c_api_macros_hdrs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 23:52:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins, tasks and compiler infrastructure for compiling/linking code"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 2 occurrences
            "EqualsUnsafeCast", // 1 occurrences
            "GetClassOnClass", // 1 occurrences
            "HidingField", // 1 occurrences
            "ImmutableEnumChecker", // 2 occurrences
            "ReferenceEquality", // 2 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/AbstractLinkTask.java

    import org.gradle.nativeplatform.toolchain.internal.PlatformToolProvider;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    
    /**
     * Base task for linking a native binary from object files and libraries.
     */
    @DisableCachingByDefault(because = "Abstract super-class, not to be instantiated directly")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. src/runtime/vdso_linux.go

    // This implements the ELF dynamic linking spec at
    // http://sco.com/developers/gabi/latest/ch5.dynamic.html
    
    // The version section is documented at
    // https://refspecs.linuxfoundation.org/LSB_3.2.0/LSB-Core-generic/LSB-Core-generic/symversion.html
    
    const (
    	_AT_SYSINFO_EHDR = 33
    
    	_PT_LOAD    = 1 /* Loadable program segment */
    	_PT_DYNAMIC = 2 /* Dynamic linking information */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccLinker.java

        @Override
        protected Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(final LinkerSpec spec, List<String> args) {
            final CommandLineToolInvocation invocation = newInvocation(
                "linking " + spec.getOutputFile().getName(), args, spec.getOperationLogger());
    
            return new Action<BuildOperationQueue<CommandLineToolInvocation>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinker.java

        @Override
        protected Action<BuildOperationQueue<CommandLineToolInvocation>> newInvocationAction(final LinkerSpec spec, List<String> args) {
            final CommandLineToolInvocation invocation = newInvocation(
                "linking " + spec.getOutputFile().getName(), spec.getOutputFile().getParentFile(), args, spec.getOperationLogger());
    
            return new Action<BuildOperationQueue<CommandLineToolInvocation>>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/install_modcacherw_issue64282.txt

    cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    go clean -modcache
    
    
    # Also try it with a 'go install' that succeeds.
    # (But skip in short mode, because linking a binary is expensive.)
    [!short] go install -modcacherw example.com/printversion@v0.1.0
    [!short] cp $WORK/extraneous.txt $GOPATH/pkg/mod/example.com/printversion@v0.1.0/extraneous_file.go
    [!short] go clean -modcache
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 17:53:43 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/runtime/rt0_linux_loong64.s

    GLOBL _rt0_loong64_linux_lib_argc<>(SB),NOPTR, $8
    DATA _rt0_loong64_linux_lib_argv<>(SB)/8, $0
    GLOBL _rt0_loong64_linux_lib_argv<>(SB),NOPTR, $8
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	// in external linking, glibc jumps to main with argc in R4
    	// and argv in R5
    
    	MOVV	$runtime·rt0_go(SB), R19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/security_test.go

    func TestCheckCompilerFlagsForInternalLink(t *testing.T) {
    	// Any "bad" compiler flag should trigger external linking.
    	for _, f := range badCompilerFlags {
    		if err := checkCompilerFlagsForInternalLink("test", "test", f); err == nil {
    			t.Errorf("missing error for %q", f)
    		}
    	}
    
    	// All "good" compiler flags should not trigger external linking,
    	// except for anything that begins with "-flto".
    	for _, f := range goodCompilerFlags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top