Vladimir Sitnikov

Results 969 comments of Vladimir Sitnikov

The issue description does not have enough information to reproduce and fix it, so I'm closing the issue.

Let's close this as the issue does not reproduce with the recent Java 11. We could probably add recommendations to use recent Java 17 or 11

@rbygrave , if you could submit a small PR which we merge (fix typo or style somewhere?), it would no longer require manual CI approval after each commit. Thanks for...

@ghiscoding , >Does it really need the license to follow in that case? Of course it is required. Here's Select2's license: https://github.com/select2/select2/blob/develop/LICENSE.md It makes no distinction on the usage type....

PS. The sad thing with `getItemMetadata` is it is used in multiple places, and there's no way to provide the metadata lazily. In other words, `metadata.cssClasses` and `metadata.columns` are used...

`-dontobfuscate` keeps the original package names, so it does not really help :-/ ``` software/amazon/awssdk/... org/apache/http/.. ```

@leo-yuriev , do you know of an existing Java implementation of t1ha?

Well, OpenJDK knows of `imulq` (see https://github.com/dmlloyd/openjdk/blob/a5de9e06dda1cfac94dc7f65a47252895e27013e/hotspot/src/cpu/x86/vm/x86_64.ad#L7980 ), however it does that just when it optimizes "division by constant" into "multiply and shift" (see https://github.com/dmlloyd/openjdk/blob/77d7cb3ad9efc4edeaae7cc46e3b4a98ea617679/hotspot/src/share/vm/opto/divnode.cpp#L412-L423 ) Do you think it...

>Java don't provides an unsigned integer types or any kind of wide multiplication, therefore at least four 64-bit integer multiplications and additions are required for There's [Math.multiplyHigh(long, long)](http://download.java.net/java/jdk9/docs/api/java/lang/Math.html#multiplyHigh-long-long-) since Java9,...