repo_id
stringclasses
927 values
file_path
stringlengths
99
214
content
stringlengths
2
4.15M
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modfile/testdata/module.golden
module abc
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modfile/testdata/comment.golden
// comment module "x" // eol // mid comment // comment 2 // comment 2 line 2 module "y" // eoy // comment 3
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modfile/testdata/block.in
// comment x "y" z // block block ( // block-eol // x-before-line "x" ( y // x-eol "x1" "x2" // line "x3" "x4" "x5" // y-line "y" // y-eol "z" // z-eol ) // block-eol2 block2 (x y z ) // eof
module
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/module/module_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package module import "testing" var checkTests = []struct { path string version string ok bool }{ {"rsc.io/quote", "0.1.0", false}, {"rsc io/quot...
module
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/module/module.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package module defines the module.Version type // along with support code. package module // IMPORTANT NOTE // // This file essentially defines the set of v...
txtar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/txtar/archive_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package txtar import ( "bytes" "fmt" "reflect" "testing" ) var tests = []struct { name string text string parsed *Archive }{ { name: "basic", ...
txtar
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/txtar/archive.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package txtar implements a trivial text-based file archive format. // // The goals for the format are: // // - be trivial enough to create and edit by hand. ...
web2
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/web2/web_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package web2 import ( "reflect" "testing" ) var testNetrc = ` machine api.github.com login user password pwd machine incomlete.host login justlogin ...
web2
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/web2/web.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package web2 import ( "bytes" "cmd/go/internal/base" "encoding/json" "flag" "fmt" "io" "io/ioutil" "net/http" "os" "path/filepath" "runtime" "runti...
fmtcmd
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/fmtcmd/fmt.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package fmtcmd implements the ``go fmt'' command. package fmtcmd import ( "fmt" "os" "path/filepath" "runtime" "strings" "sync" "cmd/go/internal/bas...
str
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/str/path.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package str import ( "path/filepath" "strings" ) // HasPath reports whether the slash-separated path s // begins with the elements in prefix. func HasPathPr...
str
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/str/str.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package str provides string manipulation utilities. package str import ( "bytes" "fmt" "unicode" "unicode/utf8" ) // StringList flattens its arguments ...
generate
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/generate/generate.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package generate implements the ``go generate'' command. package generate import ( "bufio" "bytes" "fmt" "io" "log" "os" "os/exec" "path/filepath" ...
generate
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/generate/generate_test.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package generate import ( "reflect" "runtime" "testing" ) type splitTest struct { in string out []string } var splitTests = []splitTest{ {"", nil}, {...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/dep.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "fmt" "strconv" "strings" "cmd/go/internal/modfile" "cmd/go/internal/module" "cmd/go/internal/semver" ) func ParseGopkgLock(fi...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/glock.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "strings" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseGLOCKFILE(file string, data []byte) (*modfile.File, erro...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/modconv.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import "cmd/go/internal/modfile" var Converters = map[string]func(string, []byte) (*modfile.File, error){ "GLOCKFILE": ParseGLOCKFIL...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/vjson.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "encoding/json" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseVendorJSON(file string, data []byte) (*modfile.Fil...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/convert_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "bytes" "fmt" "internal/testenv" "io/ioutil" "log" "os" "os/exec" "path/filepath" "strings" "testing" "cmd/go/internal/cfg...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/tsv.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "strings" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseDependenciesTSV(file string, data []byte) (*modfile.File...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/convert.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "fmt" "os" "sort" "strings" "sync" "cmd/go/internal/base" "cmd/go/internal/modfetch" "cmd/go/internal/modfile" "cmd/go/inter...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/vconf.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "strings" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseVendorConf(file string, data []byte) (*modfile.File, err...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/vyml.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "strings" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseVendorYML(file string, data []byte) (*modfile.File, erro...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/modconv_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "bytes" "fmt" "io/ioutil" "path/filepath" "testing" ) var extMap = map[string]string{ ".dep": "Gopkg.lock", ".glide": ...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/vmanifest.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "encoding/json" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseVendorManifest(file string, data []byte) (*modfile...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/glide.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "strings" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseGlideLock(file string, data []byte) (*modfile.File, erro...
modconv
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/godeps.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modconv import ( "encoding/json" "cmd/go/internal/modfile" "cmd/go/internal/module" ) func ParseGodepsJSON(file string, data []byte) (*modfile.Fil...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/dockermachine.godeps
{ "ImportPath": "github.com/docker/machine", "GoVersion": "go1.4.2", "Deps": [ { "ImportPath": "code.google.com/p/goauth2/oauth", "Comment": "weekly-56", "Rev": "afe77d958c701557ec5dc56f6936fcc194d15520" }, { "ImportPath": "github.com/MSOpenTech/azure-sdk-for-go", "Comment": "v1.1-17-g515f3ec", ...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/dockerman.glide
hash: ead3ea293a6143fe41069ebec814bf197d8c43a92cc7666b1f7e21a419b46feb updated: 2016-06-20T21:53:35.420817456Z imports: - name: github.com/BurntSushi/toml version: f0aeabca5a127c4078abb8c8d64298b147264b55 - name: github.com/cpuguy83/go-md2man version: a65d4d2de4d5f7c74868dfa9b202a3c8be315aaa subpackages: - md2m...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/govmomi.out
github.com/davecgh/go-xdr/xdr2 4930550ba2e22f87187498acfd78348b15f4e7a8 github.com/google/uuid 6a5e28554805e78ea6141142aba763936c4761c0 github.com/kr/pretty 2ee9d7453c02ef7fa518a83ae23644eb8872186a github.com/kr/pty 95d05c1eef33a45bd58676b6ce28d105839b8d0b github.com/vmware/vmw-guestinfo 25eff159a728be87e103a0b8045e082...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/cockroach.glock
cmd github.com/cockroachdb/c-protobuf/cmd/protoc cmd github.com/cockroachdb/yacc cmd github.com/gogo/protobuf/protoc-gen-gogo cmd github.com/golang/lint/golint cmd github.com/jteeuwen/go-bindata/go-bindata cmd github.com/kisielk/errcheck cmd github.com/robfig/glock cmd github.com/tebeka/go2xunit cmd golang.org/x/tools/...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/juju.out
github.com/Azure/azure-sdk-for-go 902d95d9f311ae585ee98cfd18f418b467d60d5a github.com/Azure/go-autorest 6f40a8acfe03270d792cb8155e2942c09d7cff95 github.com/ajstarks/svgo 89e3ac64b5b3e403a5e7c35ea4f98d45db7b4518 github.com/altoros/gosigma 31228935eec685587914528585da4eb9b073c76d github.com/beorn7/perks 3ac7bf7a47d159a03...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/prometheus.vjson
{ "comment": "", "ignore": "test appengine", "package": [ { "checksumSHA1": "Cslv4/ITyQmgjSUhNXFu8q5bqOU=", "origin": "k8s.io/client-go/1.5/vendor/cloud.google.com/go/compute/metadata", "path": "cloud.google.com/go/compute/metadata", "revision": "c589d0c9f0d81640c518354c7bcae77d99820aa3", "revisionT...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/dockerman.out
github.com/BurntSushi/toml f0aeabca5a127c4078abb8c8d64298b147264b55 github.com/cpuguy83/go-md2man a65d4d2de4d5f7c74868dfa9b202a3c8be315aaa github.com/fsnotify/fsnotify 30411dbcefb7a1da7e84f75530ad3abe4011b4f8 github.com/hashicorp/hcl da486364306ed66c218be9b7953e19173447c18b github.com/inconshreveable/mousetrap 76626ae9...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/moby.out
github.com/Azure/go-ansiterm d6e3b3328b783f23731bc4d058875b0371ff8109 github.com/Microsoft/hcsshim v0.6.5 github.com/Microsoft/go-winio v0.4.5 github.com/davecgh/go-spew 346938d642f2ec3594ed81d874461961cd0faa76 github.com/docker/libtrust 9cbd2a1374f46905c68a4eb3694a130610adc62a github.com/go-check/check 4ed411733c5785b...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/govmomi.vmanifest
{ "version": 0, "dependencies": [ { "importpath": "github.com/davecgh/go-xdr/xdr2", "repository": "https://github.com/rasky/go-xdr", "vcs": "git", "revision": "4930550ba2e22f87187498acfd78348b15f4e7a8", "branch": "improvements", "path": "/xdr2", "notests": true }, { "importpath": "github...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/cockroach.out
github.com/agtorre/gocolorize f42b554bf7f006936130c9bb4f971afd2d87f671 github.com/biogo/store e1f74b3c58befe661feed7fa4cf52436de753128 github.com/cockroachdb/c-lz4 6e71f140a365017bbe0904710007f8725fd3f809 github.com/cockroachdb/c-protobuf 0f9ab7b988ca7474cf76b9a961ab03c0552abcb3 github.com/cockroachdb/c-rocksdb 7fc876f...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/upspin.dep
# This file is autogenerated, do not edit; changes may be undone by the next 'dep ensure'. [[projects]] branch = "master" name = "bazil.org/fuse" packages = [".","fs","fuseutil"] revision = "371fbbdaa8987b715bdd21d6adc4c9b20155f748" [[projects]] branch = "master" name = "github.com/NYTimes/gziphandler" ...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/dockermachine.out
code.google.com/p/goauth2/oauth afe77d958c701557ec5dc56f6936fcc194d15520 github.com/MSOpenTech/azure-sdk-for-go 515f3ec74ce6a5b31e934cefae997c97bd0a1b1e github.com/cenkalti/backoff 9831e1e25c874e0a0601b6dc43641071414eec7a github.com/codegangsta/cli e1712f381785e32046927f64a7c86fe569203196 github.com/digitalocean/godo 5...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/moby.vconf
# the following lines are in sorted order, FYI github.com/Azure/go-ansiterm d6e3b3328b783f23731bc4d058875b0371ff8109 github.com/Microsoft/hcsshim v0.6.5 github.com/Microsoft/go-winio v0.4.5 github.com/davecgh/go-spew 346938d642f2ec3594ed81d874461961cd0faa76 github.com/docker/libtrust 9cbd2a1374f46905c68a4eb3694a130610a...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/prometheus.out
cloud.google.com/go/compute/metadata c589d0c9f0d81640c518354c7bcae77d99820aa3 cloud.google.com/go/internal c589d0c9f0d81640c518354c7bcae77d99820aa3 github.com/Azure/azure-sdk-for-go/arm/compute bd73d950fa4440dae889bd9917bff7cef539f86e github.com/Azure/azure-sdk-for-go/arm/network bd73d950fa4440dae889bd9917bff7cef539f86...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/juju.tsv
github.com/Azure/azure-sdk-for-go git 902d95d9f311ae585ee98cfd18f418b467d60d5a 2016-07-20T05:16:58Z github.com/Azure/go-autorest git 6f40a8acfe03270d792cb8155e2942c09d7cff95 2016-07-19T23:14:56Z github.com/ajstarks/svgo git 89e3ac64b5b3e403a5e7c35ea4f98d45db7b4518 2014-10-04T21:11:59Z github.com/altoros/gosigma git 312...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/upspin.out
bazil.org/fuse 371fbbdaa8987b715bdd21d6adc4c9b20155f748 github.com/NYTimes/gziphandler 97ae7fbaf81620fe97840685304a78a306a39c64 github.com/golang/protobuf 1643683e1b54a9e88ad26d98f81400c8c9d9f4f9 github.com/russross/blackfriday 6d1ef893fcb01b4f50cb6e57ed7df3e2e627b6b2 golang.org/x/crypto 13931e22f9e72ea58bb73048bc752b4...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/panicparse.out
github.com/kr/pretty 737b74a46c4bf788349f72cb256fed10aea4d0ac github.com/kr/text 7cafcd837844e784b526369c9bce262804aebc60 github.com/maruel/ut a9c9f15ccfa6f8b90182a53df32f4745586fbae3 github.com/mattn/go-colorable 9056b7a9f2d1f2d96498d6d146acd1f9d5ed3d59 github.com/mattn/go-isatty 56b76bdf51f7708750eac80fa38b952bb9f326...
testdata
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modconv/testdata/panicparse.vyml
vendors: - path: github.com/kr/pretty rev: 737b74a46c4bf788349f72cb256fed10aea4d0ac - path: github.com/kr/text rev: 7cafcd837844e784b526369c9bce262804aebc60 - path: github.com/maruel/ut rev: a9c9f15ccfa6f8b90182a53df32f4745586fbae3 - path: github.com/mattn/go-colorable rev: 9056b7a9f2d1f2d96498d6d146acd1f9d5ed3...
web
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/web/http.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build !cmd_go_bootstrap // This code is compiled into the real 'go' binary, but it is not // compiled into the binary that is built during all.bash, so as ...
web
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/web/security.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package web defines helper routines for accessing HTTP/HTTPS resources. package web // SecurityMode specifies whether a function should make network // call...
web
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/web/bootstrap.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build cmd_go_bootstrap // This code is compiled only into the bootstrap 'go' binary. // These stubs avoid importing packages with large dependency // trees...
cfg
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cfg/zdefaultcc.go
// Code generated by go tool dist; DO NOT EDIT. package cfg const DefaultPkgConfig = `pkg-config` func DefaultCC(goos, goarch string) string { switch goos + `/` + goarch { } return "gcc" } func DefaultCXX(goos, goarch string) string { switch goos + `/` + goarch { } return "c++" }
cfg
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cfg/cfg.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package cfg holds configuration shared by multiple parts // of the go command. package cfg import ( "bytes" "fmt" "go/build" "io/ioutil" "log" "os" "...
cfg
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cfg/zosarch.go
// Code generated by go tool dist; DO NOT EDIT. package cfg var OSArchSupportsCgo = map[string]bool{ "android/386": true, "android/amd64": true, "android/arm": true, "android/arm64": true, "darwin/386": true, "darwin/amd64": true, "darwin/arm": true, "darwin/arm64": true, "dragonf...
load
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/load/flag_test.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package load import ( "fmt" "path/filepath" "reflect" "testing" ) type ppfTestPackage struct { path string dir string cmdline bool flags []st...
load
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/load/path.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package load import ( "path/filepath" "strings" ) // hasSubdir reports whether dir is a subdirectory of // (possibly multiple levels below) root. // If so, ...
load
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/load/pkg.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package load loads packages. package load import ( "bytes" "fmt" "go/build" "go/token" "io/ioutil" "os" pathpkg "path" "path/filepath" "sort" "str...
load
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/load/test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package load import ( "bytes" "cmd/go/internal/base" "cmd/go/internal/str" "errors" "fmt" "go/ast" "go/build" "go/doc" "go/parser" "go/token" "path/...
load
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/load/search.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package load import ( "path/filepath" "strings" "cmd/go/internal/search" ) // MatchPackage(pattern, cwd)(p) reports whether package p matches pattern in t...
load
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/load/flag.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package load import ( "cmd/go/internal/base" "cmd/go/internal/str" "fmt" "strings" ) var ( BuildAsmflags PerPackageFlag // -asmflags BuildGcflags P...
clean
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/clean/clean.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package clean implements the ``go clean'' command. package clean import ( "fmt" "io/ioutil" "os" "path/filepath" "strings" "time" "cmd/go/internal/b...
semver
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/semver/semver_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package semver import ( "strings" "testing" ) var tests = []struct { in string out string }{ {"bad", ""}, {"v1-alpha.beta.gamma", ""}, {"v1-pre", ""},...
semver
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/semver/semver.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package semver implements comparison of semantic version strings. // In this package, semantic version strings must begin with a leading "v", // as in "v1.0....
dirhash
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/dirhash/hash.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package dirhash defines hashes over directory trees. package dirhash import ( "archive/zip" "crypto/sha256" "encoding/base64" "errors" "fmt" "io" "os...
dirhash
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/dirhash/hash_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package dirhash import ( "archive/zip" "crypto/sha256" "encoding/base64" "fmt" "io" "io/ioutil" "os" "path/filepath" "strings" "testing" ) func h(s ...
version
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/version/vgo.go
package version const version = "devel +b0a1c5df98"
version
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/version/version.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package version implements the ``go version'' command. package version import ( "fmt" "runtime" "cmd/go/internal/base" "cmd/go/internal/work" ) var Cm...
tool
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/tool/tool.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package tool implements the ``go tool'' command. package tool import ( "fmt" "os" "os/exec" "sort" "strings" "cmd/go/internal/base" "cmd/go/internal...
doc
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/doc/doc.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package doc implements the ``go doc'' command. package doc import ( "cmd/go/internal/base" "cmd/go/internal/cfg" ) var CmdDoc = &base.Command{ Run: ...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/security_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package work import ( "os" "testing" ) var goodCompilerFlags = [][]string{ {"-DFOO"}, {"-Dfoo=bar"}, {"-F/Qt"}, {"-I/"}, {"-I/etc/passwd"}, {"-I."}, ...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/init.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Build initialization (after flag parsing). package work import ( "cmd/go/internal/base" "cmd/go/internal/cfg" "cmd/go/internal/load" "flag" "fmt" "os...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/security.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Checking of compiler and linker flags. // We must avoid flags like -fplugin=, which can allow // arbitrary code execution during the build. // Do not make ch...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/gc.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package work import ( "bufio" "bytes" "fmt" "io" "io/ioutil" "log" "os" "path/filepath" "runtime" "strings" "cmd/go/internal/base" "cmd/go/interna...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/gccgo.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package work import ( "fmt" "io/ioutil" "os" "os/exec" "path/filepath" "strings" "cmd/go/internal/base" "cmd/go/internal/cfg" "cmd/go/internal/load" ...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/build.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package work import ( "bytes" "errors" "fmt" "go/build" "io/ioutil" "os" "os/exec" "path" "path/filepath" "runtime" "strings" "cmd/go/internal/bas...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/action.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Action graph creation (planning). package work import ( "bufio" "bytes" "container/heap" "debug/elf" "encoding/json" "fmt" "io/ioutil" "os" "path/...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/testgo.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // This file contains extra hooks for testing the go command. // +build testgo package work import "os" func init() { if v := os.Getenv("TESTGO_VERSION"); ...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/buildid.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package work import ( "bytes" "fmt" "io/ioutil" "os" "os/exec" "strings" "cmd/go/internal/base" "cmd/go/internal/cache" "cmd/go/internal/cfg" "cmd/g...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/build_test.go
// Copyright 2016 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package work import ( "bytes" "fmt" "io/ioutil" "os" "path/filepath" "reflect" "runtime" "strings" "testing" "cmd/go/internal/base" "cmd/go/interna...
work
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/work/exec.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Action graph execution. package work import ( "bytes" "encoding/json" "errors" "fmt" "io" "io/ioutil" "log" "math/rand" "os" "os/exec" "path/fil...
envcmd
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/envcmd/env.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package envcmd implements the ``go env'' command. package envcmd import ( "encoding/json" "fmt" "os" "path/filepath" "runtime" "strings" "cmd/go/int...
fix
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/fix/fix.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package fix implements the ``go fix'' command. package fix import ( "cmd/go/internal/base" "cmd/go/internal/cfg" "cmd/go/internal/load" "cmd/go/internal...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/init.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "bytes" "cmd/go/internal/base" "cmd/go/internal/cache" "cmd/go/internal/cfg" "cmd/go/internal/load" "cmd/go/internal/modconv" "...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/import.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "bytes" "errors" "fmt" "go/build" "os" "path/filepath" "strings" "cmd/go/internal/cfg" "cmd/go/internal/modfetch/codehost" ...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/query.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "cmd/go/internal/modfetch" "cmd/go/internal/modfetch/codehost" "cmd/go/internal/module" "cmd/go/internal/semver" "fmt" pathpkg "...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/search.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "fmt" "os" "path/filepath" "strings" "cmd/go/internal/base" "cmd/go/internal/cfg" "cmd/go/internal/imports" "cmd/go/internal/...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/build.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "bytes" "cmd/go/internal/base" "cmd/go/internal/cfg" "cmd/go/internal/modfetch" "cmd/go/internal/modinfo" "cmd/go/internal/modul...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/help.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import "cmd/go/internal/base" // TODO(rsc): The "module code layout" section needs to be written. var HelpModules = &base.Command{ UsageLine...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/query_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "internal/testenv" "io/ioutil" "log" "os" "path" "path/filepath" "strings" "testing" "cmd/go/internal/modfetch" "cmd/go/int...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/list.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "fmt" "os" "strings" "cmd/go/internal/base" "cmd/go/internal/modinfo" "cmd/go/internal/module" "cmd/go/internal/par" "cmd/go/...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/import_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "internal/testenv" "regexp" "strings" "testing" ) var importTests = []struct { path string err string }{ { path: "golang.or...
modload
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modload/load.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package modload import ( "bytes" "errors" "fmt" "go/build" "io/ioutil" "os" "path" "path/filepath" "sort" "strings" "sync" "cmd/go/internal/base" ...
cache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cache/default_unix_test.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // +build !windows,!darwin,!plan9 package cache import ( "os" "strings" "testing" ) func TestDefaultDir(t *testing.T) { goCacheDir := "/tmp/test-go-cache...
cache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cache/hash.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package cache import ( "bytes" "crypto/sha256" "fmt" "hash" "io" "os" "runtime" "sync" ) var debugHash = false // set when GODEBUG=gocachehash=1 // H...
cache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cache/hash_test.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package cache import ( "fmt" "io/ioutil" "os" "testing" ) func TestHash(t *testing.T) { oldSalt := hashSalt hashSalt = nil defer func() { hashSalt = ...
cache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cache/default.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package cache import ( "fmt" "io/ioutil" "os" "path/filepath" "runtime" "sync" ) // Default returns the default cache to use, or nil if no cache should ...
cache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cache/cache.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package cache implements a build artifact cache. package cache import ( "bytes" "crypto/sha256" "encoding/hex" "errors" "fmt" "io" "io/ioutil" "os" ...
cache
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/cache/cache_test.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package cache import ( "bytes" "encoding/binary" "fmt" "io/ioutil" "os" "path/filepath" "testing" "time" ) func init() { verify = false // even if GO...
modget
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/modget/get.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package modget implements the module-aware ``go get'' command. package modget import ( "cmd/go/internal/base" "cmd/go/internal/cfg" "cmd/go/internal/get"...
get
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/get/tag_test.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package get import "testing" var selectTagTestTags = []string{ "go.r58", "go.r58.1", "go.r59", "go.r59.1", "go.r61", "go.r61.1", "go.weekly.2010-01-02"...
get
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/get/get.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package get implements the ``go get'' command. package get import ( "fmt" "go/build" "os" "path/filepath" "runtime" "strings" "cmd/go/internal/base"...
get
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/get/discovery.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package get import ( "encoding/xml" "fmt" "io" "strings" ) // charsetReader returns a reader for the given charset. Currently // it only supports UTF-8 an...
get
/home/linuxreitt/Michinereitt/Tuning/Workshop_Scripts/hf-codegen/data/golang_public_repos/vgo/vendor/cmd/go/internal/get/vcs.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package get import ( "encoding/json" "errors" "fmt" "internal/singleflight" "log" "net/url" "os" "os/exec" "path/filepath" "regexp" "strings" "sync...