1
0
mirror of https://gitcode.com/gitea/gitea.git synced 2025-07-04 03:37:01 +08:00

Upgrade blevesearch to v0.8.1 ()

For 

a91b427b59
This commit is contained in:
Mura Li
2019-11-27 17:23:33 +08:00
committed by Lauris BH
parent b50dee5a61
commit 9591185c8f
180 changed files with 43400 additions and 41105 deletions
go.modgo.sum
vendor
github.com
golang.org/x/sys
cpu
unix
windows
modules.txt

11
vendor/github.com/RoaringBitmap/roaring/clz.go generated vendored Normal file

@ -0,0 +1,11 @@
// +build go1.9
// "go1.9", from Go version 1.9 onward
// See https://golang.org/pkg/go/build/#hdr-Build_Constraints
package roaring
import "math/bits"
func countLeadingZeros(x uint64) int {
return bits.LeadingZeros64(x)
}