Daniel Lemire

Results 1862 comments of Daniel Lemire

> I also noticed that Gradle is an old version, 6.9.4 (released in Feb 2023) . I could first help get the build migrated to use a recent Gradle version....

⭐ We have a solution that works... in other repositories. We made it work with Maven in two projects (fast-pack/[JavaFastPFOR](https://github.com/fast-pack/JavaFastPFOR) and lemire/[externalsortinginjava](https://github.com/lemire/externalsortinginjava)). The credit goes to Piotr (@piotrrzysko). It works...

@billywhizz > also, shouldn't your on->release->types be [published] ? I am following GitHub's example. https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-java-packages-with-gradle#publishing-packages-to-github-packages And you can see that the workflow does run. It also appears to claim that...

> In case it helps, I mostly use on 'push a tag with v... -> upload artifacts -> download artifacts -> create a release', Thanks. I love your use of...

@mertssmnoglu Great. Your link to https://github.com/codicis/asn1-gradle-plugin suggests that our configuration is not very far from correct, since their code looks a fair amount like our code.

@mertssmnoglu The gradle documentation suggests we should do... ```kotlin subprojects { publishing { publications { create("mavenJava") { from(components["java"]) afterEvaluate { artifactId = tasks.jar.get().archiveBaseName.get() } } } } } ``` But...

My purpose here is to document the issues to make it easier for someone who understands the tech stack well to help.

I resolved the issue.

You can call ```Java FastAggregation.andCardinality(bitmaps); ``` which will return the cardinality of the intersection. We don't have a function per se that just determines if it is 0 or greater...

Putting this PR on hold as @shikharid might have a better option.