-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I couldn't run #8
Comments
It is not my project but it appears that you are asking it to store the compressed result in an empty slice (out). It may not have the room to write anything! |
I don't think so, I tried with "out := make([]int32, 100)" but still got the same error. I have 23k values in my input array. I think there is a problem here |
In your example, you appear to have a single value in the array. This being said,
Does that help? Note that I am not the maintainer of this project. |
$ go mod tidy
go: finding module for package github.com/dataence/bytebuffer
go: finding module for package github.com/willf/bitset
go: finding module for package code.google.com/p/snappy-go/snappy
go: found github.com/dataence/bytebuffer in github.com/dataence/bytebuffer v0.0.0-20131118020616-f1bbd176b4c1
go: found github.com/willf/bitset in github.com/willf/bitset v1.7.0
go: testler imports
github.com/zentures/encoding/fastpfor tested by
github.com/zentures/encoding/fastpfor.test imports
github.com/dataence/encoding/generators imports
github.com/willf/bitset: github.com/willf/[email protected]: parsing go.mod:
module declares its path as: github.com/bits-and-blooms/bitset
but was required as: github.com/willf/bitset I'm getting an error while downloading the package, is it because of me? |
hello, I'm trying to replace the fastPFor java code with golang, but when the array I sent in my java code is outputting, I'm getting an error over golang.
The error I get is: fastpfor/Compression Length = 0. No work done.
What exactly could be the reason, thanks in advance.
The text was updated successfully, but these errors were encountered: