Vladimir Sitnikov

Results 969 comments of Vladimir Sitnikov

@ShawnTeoh , does `exclude: [regex1, regex2, ...]` answer your question? See https://github.com/untra/polyglot/blob/master/site/_config.yml#L36 On the other hand, `/es//whatever.com/...` is a strange url

Ah, I'm afraid I'm migrating off Shipkit as it does not support Gradle 6, and there are weird issues with licensing :-/ I have never used Shipkit (I've just forked...

ShipkitJavaIntegTest fails with Gradle 6.5, and the cause seems to be tasks returned in the different order. I don't know what does the test verify, so I don't know how...

One of the workarounds could be "ignore :generatePom and :generateMetadata" tasks in `skippedTaskPathsGradleBugWorkaround`. The tasks do not seem to be important much, and they seem to be the only ones...

I guess you would have to make a patch for that around https://github.com/untra/polyglot/blob/d1a5c8599be53ed859e3f5e3fa43cd094c6936a6/lib/jekyll/polyglot/patches/jekyll/site.rb#L93-L105

Consider using `Nonnull` by default, so the only place when you need to document nullability becomes `@Nullable`. For instance, jspecify did not include `@NonNull` for a long time, and now...

@sginsbourg , Instructions to test this PR are as follows: ``` git clone --depth 100 https://github.com/t-imoto002/jmeter.git jmeter_autocorrelation cd jmeter_autocorrelation ./gradlew runGui ``` It will build and launch JMeter, then you...

@apodelko , the build instructions are still valid, however, I do not follow the development of this feature closely, so I don't really know the way to use it. However,...

@t-imoto002 , can you please clarify why the feature is named `correlation`? Frankly speaking, it is not clear what is correlated with what.

The move from `HashMap` to `IdentityHashMap` in `HashTree` and `ListedHashTree` breaks two tests that check the behavior of `HashTree.equals`: ``` FAILURE 0,0sec, org.apache.jorphan.collections.PackageTest > testEqualsAndHashCode1() java.lang.AssertionError at org.junit.Assert.fail(Assert.java:87) at org.junit.Assert.assertTrue(Assert.java:42)...