Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 877 for link66 (0.11 sec)

  1. src/cmd/internal/obj/link.go

    // LinkArch is the definition of a single architecture.
    type LinkArch struct {
    	*sys.Arch
    	Init           func(*Link)
    	ErrorCheck     func(*Link, *LSym)
    	Preprocess     func(*Link, *LSym, ProgAlloc)
    	Assemble       func(*Link, *LSym, ProgAlloc)
    	Progedit       func(*Link, *Prog, ProgAlloc)
    	SEH            func(*Link, *LSym) *LSym
    	UnaryDst       map[As]bool // Instruction takes one operand, a destination.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    		addSymbolLinksBlocks(b.Blocks, defaultPackage)
    	// no links in these blocks
    	case *md.CodeBlock:
    	case *md.HTMLBlock:
    	case *md.Empty:
    	case *md.ThematicBreak:
    	default:
    		panic(fmt.Sprintf("unknown block type %T", b))
    	}
    }
    
    // addSymbolLinksInlines looks for symbol links in the slice of inline markdown
    // elements. It returns a new slice of inline elements with links added.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. docs/de/docs/external-links.md

    !!! note "Hinweis Deutsche Übersetzung"
        Die folgenden Überschriften und Links werden aus einer <a href="https://github.com/tiangolo/fastapi/blob/master/docs/en/data/external_links.yml" class="external-link" target="_blank">anderen Datei</a> gelesen und sind daher nicht ins Deutsche übersetzt.
    
    {% for section_name, section_content in external_links.items() %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 21 22:23:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/link/doc.go

    	-extar ar
    		Set the external archive program (default "ar").
    		Used only for -buildmode=c-archive.
    	-extld linker
    		Set the external linker (default "clang" or "gcc").
    	-extldflags flags
    		Set space-separated flags to pass to the external linker.
    	-f
    		Ignore version mismatch in the linked archives.
    	-g
    		Disable Go package data checks.
    	-importcfg file
    		Read import configuration from file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. doc/next/5-toolchain.md

    ## Assembler {#assembler}
    
    ## Linker {#linker}
    
    <!-- go.dev/issue/67401, CL 585556, CL 587220, and many more -->
    The linker now disallows using a `//go:linkname` directive to refer to
    internal symbols in the standard library (including the runtime) that
    are not marked with `//go:linkname` on their definitions.
    Similarly, the linker disallows references to such symbols from assembly
    code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/cgo_stubs_ppc64x_internal_linking_test.go

    //go:build (ppc64 || ppc64le) && internal
    
    package cgotest
    
    import "testing"
    
    // If gcc is used, and linking internally, __mulsc3 and __muldc3
    // will be linked in from libgcc which make several R_PPC64_TOC16_DS
    // relocations which may not be resolvable with the internal linker.
    func test8694(t *testing.T) { t.Skip("not supported on ppc64/ppc64le with internal linking") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 631 bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

      T* value_;
      linked_ptr_internal link_;
    
      void depart() {
        if (link_.depart()) delete value_;
      }
    
      void capture(T* ptr) {
        value_ = ptr;
        link_.join_new();
      }
    
      template <typename U> void copy(linked_ptr<U> const* ptr) {
        value_ = ptr->get();
        if (value_)
          link_.join(&ptr->link_);
        else
          link_.join_new();
      }
    };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/link.go

    		return nil, 0, false
    	}
    	j++
    	for j < len(s) && isURL(s[j]) {
    		j++
    	}
    	if j >= len(s) || s[j] != '>' {
    		return nil, 0, false
    	}
    	link := s[i+1 : j]
    	// link = mdUnescaper.Replace(link)
    	return &AutoLink{link, link}, j + 1, true
    }
    
    func parseAutoLinkEmail(s string, i int) (Inline, int, bool) {
    	// CommonMark 0.30:
    	//
    	//	An email address, for these purposes, is anything that matches
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/path/filepath/path_test.go

    	{"test", "test"},
    	{"test/dir", "test/dir"},
    	{"test/dir/../..", "."},
    	{"test/link1", "test"},
    	{"test/link2", "test/dir"},
    	{"test/link1/dir", "test/dir"},
    	{"test/link2/..", "test"},
    	{"test/dir/link3", "."},
    	{"test/link2/link3/test", "test"},
    	{"test/linkabs", "/"},
    	{"test/link4/..", "test"},
    	{"src/versions/current/modules/test", "src/pool/test"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho_update_uuid.go

    // command? See issue #64947 for more detail, but the short answer is
    // that newer versions of the Macos toolchain (the newer linker in
    // particular) appear to compute the UUID based not just on the
    // content of the object files being linked but also on things like
    // the timestamps/paths of the objects; this makes it
    // difficult/impossible to support reproducible builds. Since we try
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top