Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,993 for LINK (0.05 sec)

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

    package ld
    
    import (
    	"bufio"
    	"cmd/internal/objabi"
    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"fmt"
    )
    
    type Shlib struct {
    	Path string
    	Hash []byte
    	Deps []string
    	File *elf.File
    }
    
    // Link holds the context for writing object code from a compiler
    // or for reading that input into the linker.
    type Link struct {
    	Target
    	ErrorReporter
    	ArchSyms
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. 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)
  3. src/vendor/golang.org/x/net/lif/link.go

    // logical network interfaces share the same logical data link.
    type Link struct {
    	Name  string // name, equivalent to IP interface name
    	Index int    // index, equivalent to IP interface index
    	Type  int    // type
    	Flags int    // flags
    	MTU   int    // maximum transmission unit, basically link MTU but may differ between IP address families
    	Addr  []byte // address
    }
    
    func (ll *Link) fetch(s uintptr) {
    	var lifr lifreq
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. 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)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Link.java

            }
            if (!getClass().equals(o.getClass())) {
                return false;
            }
            Link link = (Link) o;
            return Objects.equal(name, link.name)
                && Objects.equal(type, link.type)
                && Objects.equal(location, link.location)
                && Objects.equal(locationUri, link.locationUri);
        }
    
        @Override
        public int hashCode() {
            int result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/link.go

    // do _that_ weird thing" (per rsc). See also #4257.
    var ReservedImports = map[string]bool{
    	"go":   true,
    	"type": true,
    }
    
    var Ctxt *obj.Link
    
    // TODO(mdempsky): These should probably be obj.Link methods.
    
    // PkgLinksym returns the linker symbol for name within the given
    // package prefix. For user packages, prefix should be the package
    // path encoded with objabi.PathToPrefix.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/link.txt

    Russ Cox <******@****.***> 1648990796 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 527 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-log-link.png

    teamcity-log-link.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42K bytes
    - Viewed (0)
  9. tools/go-compile-without-link

    #!/bin/bash
    
    if [[ "${2}" == "-V=full" ]]; then
      "$@"
      exit 0
    fi
    case "$(basename ${1})" in
      link)
        # Output a dummy file
        touch "${3}"
        ;;
      *)
        "$@"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 23:27:32 UTC 2023
    - 171 bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.pom

                <link>http://jakarta.apache.org/commons/logging/apidocs/</link>
                <link>http://jakarta.apache.org/commons/pool/apidocs/</link>
                <link>http://www.junit.org/junit/javadoc/</link>
                <link>http://logging.apache.org/log4j/docs/api/</link>
                <link>http://jakarta.apache.org/regexp/apidocs/</link>
                <link>http://jakarta.apache.org/velocity/api/</link>
              </links>
            </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 2.3K bytes
    - Viewed (0)
Back to top