Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,036 for link66 (0.12 sec)

  1. src/cmd/go/note_test.go

    		// Test while forcing use of the gold linker, since in the past
    		// we've had trouble reading the notes generated by gold.
    		err := tg.doRun([]string{"build", "-ldflags", "-buildid=" + buildID + " -linkmode=external -extldflags=-fuse-ld=gold", "-o", tg.path("hello3.exe"), tg.path("hello.go")})
    		if err != nil {
    			if tg.grepCountBoth("(invalid linker|gold|cannot find [‘']ld[’'])") > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 20 17:26:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/ObjectiveCHelloWorldApp.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
    - 4.9K bytes
    - Viewed (0)
  3. src/runtime/cgo_mmap.go

    package runtime
    
    import "unsafe"
    
    // _cgo_mmap is filled in by runtime/cgo when it is linked into the
    // program, so it is only non-nil when using cgo.
    //
    //go:linkname _cgo_mmap _cgo_mmap
    var _cgo_mmap unsafe.Pointer
    
    // _cgo_munmap is filled in by runtime/cgo when it is linked into the
    // program, so it is only non-nil when using cgo.
    //
    //go:linkname _cgo_munmap _cgo_munmap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. test/typeparam/list.go

    import (
    	"fmt"
    )
    
    type Ordered interface {
    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // _List is a linked list of ordered values of type T.
    type _List[T Ordered] struct {
    	next *_List[T]
    	val  T
    }
    
    func (l *_List[T]) Largest() T {
    	var max T
    	for p := l; p != nil; p = p.next {
    		if p.val > max {
    			max = p.val
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/embedded_protocol_buffers.h

      // This needs to be linked in to any program that wants to execute any of the
      // expressions in `cpp_shims`.
      string object_file_data;
    };
    
    // Describes a protocol buffer to embed into an object file.
    struct ProtobufToEmbed {
      // `symbol_prefix` is prefix that is guaranteed to be unique across the binary
      // or DSO the generated object file will be linked into.
      string symbol_prefix;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/ReferenceEntry.java

      int getHash();
    
      /** Returns the key for this entry. */
      @CheckForNull
      K getKey();
    
      /*
       * Used by entries that use access order. Access entries are maintained in a doubly-linked list.
       * New entries are added at the tail of the list at write time; stale entries are expired from
       * the head of the list.
       */
    
      /** Returns the time that this entry was last accessed, in ns. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  7. src/container/list/list.go

    // Package list implements a doubly linked list.
    //
    // To iterate over a list (where l is a *List):
    //
    //	for e := l.Front(); e != nil; e = e.Next() {
    //		// do something with e.Value
    //	}
    package list
    
    // Element is an element of a linked list.
    type Element struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  8. test/reflectmethod2.go

    // run
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.MethodByName is
    // never used. Test it here.
    
    package main
    
    import reflect1 "reflect"
    
    var called = false
    
    type M int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 719 bytes
    - Viewed (0)
  9. test/fixedbugs/issue10607.go

    package main
    
    import (
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    )
    
    func main() {
    	test("internal")
    	test("external") // The 'cgo' build constraint should imply that a linker is available.
    }
    
    func test(linkmode string) {
    	out, err := exec.Command("go", "run", "-ldflags", "-B=0x12345678 -linkmode="+linkmode, filepath.Join("fixedbugs", "issue10607a.go")).CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 776 bytes
    - Viewed (0)
  10. test/fixedbugs/issue15926.go

    // build
    
    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15926: linker was adding .def to the end of symbols, causing
    // a name collision with a method actually named def.
    
    package main
    
    type S struct{}
    
    func (s S) def() {}
    
    var I = S.def
    
    func main() {
        I(S{})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 03 16:56:29 UTC 2016
    - 389 bytes
    - Viewed (0)
Back to top