Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 605 for vendor$ (0.23 sec)

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

    package subdir
    
    import _ "p"
    -- vend/vendor/p/p.go --
    package p
    -- vend/vendor/q/q.go --
    package q
    -- vend/vendor/vend/dir1/dir2/dir2.go --
    package dir2
    -- vend/x/invalid/invalid.go --
    package invalid
    
    import "vend/x/invalid/vendor/foo"
    -- vend/x/vendor/p/p/p.go --
    package p
    
    import _ "notfound"
    -- vend/x/vendor/p/p.go --
    package p
    -- vend/x/vendor/r/r.go --
    package r
    -- vend/x/x.go --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 703 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stdout '^'$WORK'[/\\]auto$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]printversion$'
    stdout '^'$WORK'[/\\]auto[/\\]vendor[/\\]example.com[/\\]version$'
    
    # When the version is upgraded to 1.14, 'go mod vendor' should write a
    # vendor/modules.txt with the updated 1.14 annotations.
    go mod edit -go=1.14
    go mod vendor
    cmp $WORK/modules-1.14.txt vendor/modules.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vendor.txt

    exists vendor/a/foo/AUTHORS.txt
    exists vendor/a/foo/CONTRIBUTORS
    exists vendor/a/foo/LICENSE
    exists vendor/a/foo/PATENTS
    exists vendor/a/foo/COPYING
    exists vendor/a/foo/COPYLEFT
    exists vendor/x/NOTICE!
    exists vendor/mysite/myname/mypkg/LICENSE.txt
    
    ! exists vendor/a/foo/licensed-to-kill
    ! exists vendor/w
    ! exists vendor/w/LICENSE
    ! exists vendor/x/x2
    ! exists vendor/x/x2/LICENSE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    go mod vendor
    
    ! grep 1.17 vendor/modules.txt
    ! go build example.net/need117
    stderr '^vendor[/\\]example\.net[/\\]need117[/\\]need117.go:5:1[89]:'
    stderr 'conversion of slice to array pointer requires go1\.17 or later'
    
    ! grep 1.13 vendor/modules.txt
    go build example.net/bad114
    
    
    # Upgrading the main module to 1.17 adds version annotations.
    # Then everything is once again consistent with the non-vendored world.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cgo_trimpath_macro.txt

    v.com v1.0.0 h1:xxx
    v.com v1.0.0/go.mod h1:xxx
    -- vendor/modules.txt --
    # v.com v1.0.0
    ## explicit; go 1.20
    v.com/main
    -- vendor/v.com/main/main.go --
    package main
    
    // #cgo CFLAGS: -I../c
    // #include "stdio.h"
    // void printfile();
    import "C"
    
    func main() {
        C.printfile()
        C.fflush(C.stdout)
    }
    -- vendor/v.com/main/foo.c --
    #include "bar.h"
    -- vendor/v.com/c/bar.h --
    #include "stdio.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 19:56:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_std_vendor.txt

    cd broken
    ! go build -mod=readonly
    stderr 'disabled by -mod=readonly'
    ! go build -mod=vendor
    stderr 'http.go:5:2: cannot find module providing package golang.org/x/net/http2/hpack: import lookup disabled by -mod=vendor'
    
    # ...even if they explicitly use the "cmd/vendor/" or "vendor/" prefix.
    cd ../importcmd
    ! go build .
    stderr 'use of vendored package'
    
    cd ../importstd
    ! go build .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gopath_std_vendor.txt

    [!compiler:gc] skip
    
    go list -f '{{.Dir}}' vendor/golang.org/x/net/http2/hpack
    stdout $GOPATH[/\\]src[/\\]vendor
    
    # A package importing 'net/http' should resolve its dependencies
    # to the package 'vendor/golang.org/x/net/http2/hpack' within GOROOT.
    cd importnethttp
    go list -deps -f '{{.ImportPath}} {{.Dir}}'
    stdout ^vendor/golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor[/\\]golang.org[/\\]x[/\\]net[/\\]http2[/\\]hpack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_issue46867.txt

    # Regression test for golang.org/issue/46867:
    # 'go mod vendor' on Windows attempted to open and copy
    # files from directories outside of the module.
    
    cd subdir
    go mod vendor
    ! exists vendor/example.net/NOTICE
    exists vendor/example.net/m/NOTICE
    
    -- subdir/go.mod --
    module golang.org/issue46867
    
    go 1.17
    
    replace example.net/m v0.1.0 => ./m
    
    require example.net/m v0.1.0
    -- subdir/issue.go --
    package issue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 17:10:57 UTC 2021
    - 675 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_outside_module.txt

    go build -x -mod=mod my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz.go
    
    # baz_with_outside_dep.go (with a non-std dependency) works with -mod=mod
    # but not with -mod=readonly and -mod=vendor.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/internal/pkgpattern/pkgpattern.go

    // participates in a match of the "vendor" element in the path of a vendored
    // package, so that ./... does not match packages in subdirectories of
    // ./vendor or ./mycode/vendor, but ./vendor/... and ./mycode/vendor/... do.
    // Note, however, that a directory named vendor that itself contains code
    // is not a vendored package: cmd/vendor would be a command named vendor,
    // and the pattern cmd/... matches it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top