github.com/zxy12/go_duplicate_112_new@v0.0.0-20200807091221-747231827200/src/cmd/go/testdata/script/mod_download_hash.txt (about) 1 env GO111MODULE=on 2 3 # Testing mod download with non semantic versions; turn off proxy. 4 [!net] skip 5 [!exec:git] skip 6 env GOPROXY= 7 8 go mod download rsc.io/quote@a91498bed0a73d4bb9c1fb2597925f7883bc40a7 9 exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v0.0.0-20180709162918-a91498bed0a7.info 10 exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v0.0.0-20180709162918-a91498bed0a7.mod 11 exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v0.0.0-20180709162918-a91498bed0a7.zip 12 13 go mod download rsc.io/quote@master 14 exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v0.0.0-20180710144737-5d9f230bcfba.info 15 exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v0.0.0-20180710144737-5d9f230bcfba.mod 16 exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v0.0.0-20180710144737-5d9f230bcfba.zip 17 18 19 -- go.mod -- 20 module m 21 22 -- m.go -- 23 package m