aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/cloud.google.com/go/internal/atomiccache
Commit message (Collapse)AuthorAgeFilesLines
* vendor: switch from dep to godepDmitry Vyukov2017-06-132-104/+0
| | | | | | | dep tool vendored too much code (100MB) including tests and unused packages. godep vendored significantly less (12MB) without tests and unused packages. The main advantage is that pre-Go1.9 toolchain does not run tests of all vendor packages now.
* vendor: vendor dependenciesDmitry Vyukov2017-06-132-0/+104
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215