mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
d09eae2efa
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.52.3 to 1.53.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](https://github.com/grpc/grpc-go/compare/v1.52.3...v1.53.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
301 B
Go
16 lines
301 B
Go
//go:build (amd64 || arm64) && !appengine && gc && !purego
|
|
// +build amd64 arm64
|
|
// +build !appengine
|
|
// +build gc
|
|
// +build !purego
|
|
|
|
package xxhash
|
|
|
|
// Sum64 computes the 64-bit xxHash digest of b.
|
|
//
|
|
//go:noescape
|
|
func Sum64(b []byte) uint64
|
|
|
|
//go:noescape
|
|
func writeBlocks(d *Digest, b []byte) int
|