Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 599 for linknew (0.16 sec)

  1. src/cmd/cgo/internal/testshared/testdata/dep3/dep3.go

    package dep3
    
    // The point of this test file is that it references a type from
    // depBase that is also referenced in dep2, but dep2 is loaded by the
    // linker before depBase (because it is earlier in the import list).
    // There was a bug in the linker where it would not correctly read out
    // the type data in this case and later crash.
    
    import (
    	"testshared/dep2"
    	"testshared/depBase"
    )
    
    type Dep3 struct {
    	dep  depBase.Dep
    	dep2 dep2.Dep2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 503 bytes
    - Viewed (0)
  2. src/internal/platform/supported.go

    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    			return true
    		case "dragonfly":
    			// It seems that on Dragonfly thread local storage is
    			// set up by the dynamic linker, so internal cgo linking
    			// doesn't work. Test case is "go test runtime/cgo".
    			return true
    		}
    	}
    
    	switch goos {
    	case "android":
    		if goarch != "arm64" {
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata_test.go

    			dumpNL(out, indent+1)
    			fmt.Fprintf(out, "Links")
    			dumpTo(out, indent+2, x.Links)
    		}
    		fmt.Fprintf(out, "\n")
    
    	case []*LinkDef:
    		for _, def := range x {
    			dumpNL(out, indent)
    			dumpTo(out, indent, def)
    		}
    
    	case *LinkDef:
    		fmt.Fprintf(out, "LinkDef Used:%v Text:%q URL:%s", x.Used, x.Text, x.URL)
    
    	case []Block:
    		for _, blk := range x {
    			dumpNL(out, indent)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/runtime/textflag.h

    // This file defines flags attached to various functions
    // and data objects. The compilers, assemblers, and linker must
    // all agree on these values.
    //
    // Keep in sync with src/cmd/internal/obj/textflag.go.
    
    // Don't profile the marked routine. This flag is deprecated.
    #define NOPROF	1
    // It is ok for the linker to get multiple of these symbols. It will
    // pick one of the duplicates to use.
    #define DUPOK	2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 17:28:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/ToolType.java

        OBJECTIVECPP_COMPILER("Objective-C++ compiler"),
        OBJECTIVEC_COMPILER("Objective-C compiler"),
        WINDOW_RESOURCES_COMPILER("Windows resources compiler"),
        ASSEMBLER("Assembler"),
        LINKER("Linker"),
        STATIC_LIB_ARCHIVER("Static library archiver"),
        SWIFT_COMPILER("Swift compiler"),
        SYMBOL_EXTRACTOR("Symbol extractor"),
        STRIPPER("Stripper");
    
        private final String toolName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/amd64/asm.go

    			// prepared in the 'reloc' phase and passed to the
    			// external linker in the 'asmb' phase.
    			if ldr.SymType(s) != sym.SDATA && ldr.SymType(s) != sym.SRODATA {
    				break
    			}
    		}
    
    		if target.IsElf() {
    			// Generate R_X86_64_RELATIVE relocations for best
    			// efficiency in the dynamic linker.
    			//
    			// As noted above, symbol addresses have not been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 21K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                                linker.args '/MANIFESTUAC:level=\\'asInvoker\\' uiAccess=\\'false\\''
                            } else if (toolChain in Clang) {
                                cCompiler.args '-frandom-seed="here is the \\'random\\' seed"'
                                // TODO:DAZ Find something that works here (for all our CI machines)
                                // linker.args '-Wl,-client_name,"a \\'client\\' name"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/bcache/cache.go

    type cacheTable[K, V any] [cacheSize]atomic.Pointer[cacheEntry[K, V]]
    
    // A cacheEntry is a single entry in the linked list for a given hash table entry.
    type cacheEntry[K, V any] struct {
    	k    *K                // immutable once created
    	v    atomic.Pointer[V] // read and written atomically to allow updates
    	next *cacheEntry[K, V] // immutable once linked into table
    }
    
    func registerCache(unsafe.Pointer) // provided by runtime
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/fixtures/app/DuplicateObjectiveCBaseNamesTestApp.groovy

                        if (targetPlatform.operatingSystem.macOsX) {
                            linker.args "-framework", "Foundation"
                        } else {
                            objcCompiler.args "-I/usr/include/GNUstep", "-I/usr/local/include/objc", "-fconstant-string-class=NSConstantString", "-D_NATIVE_OBJC_EXCEPTIONS"
                            linker.args "-lgnustep-base", "-lobjc"
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/CommonToolChainIntegrationTest.groovy

                    def librarySearchPath = 'build/libs/hello/static'
                    def libraryName = 'hello'
                    if (toolChain in VisualCpp) {
                        linker.args "/LIBPATH:\${librarySearchPath}", "\${libraryName}.lib"
                    } else {
                        linker.args "-L\${librarySearchPath}", "-l\${libraryName}"
                    }
                }
            }
            hello(NativeLibrarySpec)
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top