The internal GCP package used `pkg.go.dev/google.golang.org/api` [1] to interact with Compute Engine API. Modify the package to use the new and idiomatic `pkg.go.dev/cloud.google.com/go` [2] library for interacting with the Compute Engine API. The new library have been already used to interact with the Cloudbuild and Storage APIs. The new library was not used for Compute Engine since the beginning, because at that time, it didn't support Compute Engine. Update go.mod and vendored packages. [1] https://github.com/googleapis/google-api-go-client [2] https://github.com/googleapis/google-cloud-go Signed-off-by: Tomas Hozza <thozza@redhat.com>
14 lines
643 B
Go
14 lines
643 B
Go
// +build !go1.9
|
|
|
|
package xxhash
|
|
|
|
// TODO(caleb): After Go 1.10 comes out, remove this fallback code.
|
|
|
|
func rol1(x uint64) uint64 { return (x << 1) | (x >> (64 - 1)) }
|
|
func rol7(x uint64) uint64 { return (x << 7) | (x >> (64 - 7)) }
|
|
func rol11(x uint64) uint64 { return (x << 11) | (x >> (64 - 11)) }
|
|
func rol12(x uint64) uint64 { return (x << 12) | (x >> (64 - 12)) }
|
|
func rol18(x uint64) uint64 { return (x << 18) | (x >> (64 - 18)) }
|
|
func rol23(x uint64) uint64 { return (x << 23) | (x >> (64 - 23)) }
|
|
func rol27(x uint64) uint64 { return (x << 27) | (x >> (64 - 27)) }
|
|
func rol31(x uint64) uint64 { return (x << 31) | (x >> (64 - 31)) }
|