Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Prefixes (1.61 sec)

  1. src/cmd/go/testdata/script/mod_missing_repo.txt

    # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testgodefs/testdata/main.go

    var v4 = N{}
    var v5 = A{}
    var v6 = B{}
    
    // Test that S is fully defined
    var v7 = S{}
    
    // Test that #define'd type is fully defined
    var _ = issue38649{X: 0}
    
    // Test that prefixes do not cause duplicate field names.
    var _ = Issue48396{Fd: 1, Bpf_fd: 2}
    
    func main() {
    	pass := true
    
    	// The Go translation of bitfields should not have any of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_version.txt

    [go-builder] env GOPROXY=
    [!go-builder] env GOPROXY=https://proxy.golang.org
    
    go list -m -versions go
    stdout 1.20.1 # among others
    stdout 1.19rc2
    ! stdout go1.20.1 # no go prefixes
    ! stdout go1.19rc2
    
    go list -m -versions toolchain
    stdout go1.20.1 # among others
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 17 18:25:37 UTC 2023
    - 706 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/base/link.go

    package base
    
    import (
    	"cmd/internal/obj"
    )
    
    // ReservedImports are import paths used internally for generated
    // symbols by the compiler.
    //
    // The linker uses the magic symbol prefixes "go:" and "type:".
    // Avoid potential confusion between import paths and symbols
    // by rejecting these reserved imports for now. Also, people
    // "can do weird things in GOPATH and we'd prefer they didn't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 11:28:56 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    // modulePrefixesExcludingTarget returns all prefixes of path that may plausibly
    // exist as a module, excluding targetPrefix but otherwise including path
    // itself, sorted by descending length. Prefixes that are not valid module paths
    // but are valid package paths (like "m" or "example.com/.gen") are included,
    // since they might be replaced.
    func modulePrefixesExcludingTarget(path string) []string {
    	prefixes := make([]string, 0, strings.Count(path, "/")+1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    # Verifying that -fdebug-prefix-map=path, -ffile-prefix-map, -no-canonical-prefixes
    # and -fno-canonical-systemd-headers are permitted for internal linking.
    env CGO_CFLAGS=-fdebug-prefix-map=old=/tmp/new
    go build -x -n -o dummy.exe ./usesInternalCgo
    ! stderr preferlinkext
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/vendor.go

    		src = filepath.Dir(src)
    	}
    }
    
    // metaPrefixes is the list of metadata file prefixes.
    // Vendoring copies metadata files from parents of copied directories.
    // Note that this list could be arbitrarily extended, and it is longer
    // in other tools (such as godep or dep). By using this limited set of
    // prefixes and also insisting on capitalized file names, we are trying
    // to nudge people toward more agreement on the naming
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/search/search.go

    		return
    	}
    
    	if m.IsLiteral() {
    		m.Dirs = []string{m.pattern}
    		return
    	}
    
    	// Clean the path and create a matching predicate.
    	// filepath.Clean removes "./" prefixes (and ".\" on Windows). We need to
    	// preserve these, since they are meaningful in MatchPattern and in
    	// returned import paths.
    	cleanPattern := filepath.Clean(m.pattern)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		not contain spaces. Flags listed on the command line
    		are applied after this list and therefore override it.
    	GOINSECURE
    		Comma-separated list of glob patterns (in the syntax of Go's path.Match)
    		of module path prefixes that should always be fetched in an insecure
    		manner. Only applies to dependencies that are being fetched directly.
    		GOINSECURE does not disable checksum database validation. GOPRIVATE or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/security.go

    	re(`-mwatchos-version-min=(.+)`),
    	re(`-mnop-fun-dllimport`),
    	re(`-m(no-)?sse[0-9.]*`),
    	re(`-m(no-)?ssse3`),
    	re(`-mthumb(-interwork)?`),
    	re(`-mthreads`),
    	re(`-mwindows`),
    	re(`-no-canonical-prefixes`),
    	re(`--param=ssp-buffer-size=[0-9]*`),
    	re(`-pedantic(-errors)?`),
    	re(`-pipe`),
    	re(`-pthread`),
    	re(`-?-std=([^@\-].*)`),
    	re(`-?-stdlib=([^@\-].*)`),
    	re(`--sysroot=([^@\-].*)`),
    	re(`-w`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top