mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[chore]: Bump github.com/gin-contrib/gzip from 1.0.1 to 1.1.0 (#3639)
Bumps [github.com/gin-contrib/gzip](https://github.com/gin-contrib/gzip) from 1.0.1 to 1.1.0. - [Release notes](https://github.com/gin-contrib/gzip/releases) - [Changelog](https://github.com/gin-contrib/gzip/blob/master/.goreleaser.yaml) - [Commits](https://github.com/gin-contrib/gzip/compare/v1.0.1...v1.1.0) --- updated-dependencies: - dependency-name: github.com/gin-contrib/gzip dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
15
vendor/github.com/bytedance/sonic/internal/native/dispatch_arm64.go
generated
vendored
15
vendor/github.com/bytedance/sonic/internal/native/dispatch_arm64.go
generated
vendored
@ -56,6 +56,8 @@ var (
|
||||
S_skip_array uintptr
|
||||
S_skip_object uintptr
|
||||
S_skip_number uintptr
|
||||
S_parse_with_padding uintptr
|
||||
S_lookup_small_key uintptr
|
||||
)
|
||||
|
||||
//go:nosplit
|
||||
@ -128,6 +130,17 @@ func ValidateUTF8(s *string, p *int, m *types.StateMachine) (ret int)
|
||||
//go:linkname ValidateUTF8Fast github.com/bytedance/sonic/internal/native/neon.__validate_utf8_fast
|
||||
func ValidateUTF8Fast(s *string) (ret int)
|
||||
|
||||
//go:nosplit
|
||||
//go:noescape
|
||||
//go:linkname ParseWithPadding github.com/bytedance/sonic/internal/native/neon.__parse_with_padding
|
||||
func ParseWithPadding(parser unsafe.Pointer) (ret int)
|
||||
|
||||
//go:nosplit
|
||||
//go:noescape
|
||||
//go:linkname LookupSmallKey github.com/bytedance/sonic/internal/native/neon.__lookup_small_key
|
||||
func LookupSmallKey(key *string, table *[]byte, lowerOff int) (index int)
|
||||
|
||||
|
||||
func useNeon() {
|
||||
S_f64toa = neon.S_f64toa
|
||||
S_f32toa = neon.S_f32toa
|
||||
@ -147,6 +160,8 @@ func useNeon() {
|
||||
S_skip_object = neon.S_skip_object
|
||||
S_skip_number = neon.S_skip_number
|
||||
S_get_by_path = neon.S_get_by_path
|
||||
S_parse_with_padding = neon.S_parse_with_padding
|
||||
S_lookup_small_key = neon.S_lookup_small_key
|
||||
}
|
||||
|
||||
func init() {
|
||||
|
Reference in New Issue
Block a user