Vladimir Sitnikov

Results 969 comments of Vladimir Sitnikov

@IvanZosimov , could you please double-check? The issue is that setup-java action attetempts to use `arm64` by default. In other words: the [documentation](https://github.com/actions/setup-java#usage) for `actions/setup-java` reads that the default `architecture`...

@IvanZosimov , check this: https://github.com/actions/setup-java/blob/9eda6b51cc4f6ee99be3dd5537b85e389e47bda9/src/distributions/microsoft/installer.ts#L51-L52 `microsoft/installer.ts` uses `this.distributionArchitecture()` which makes `arm64 -> aarch64` conversion: https://github.com/actions/setup-java/blob/9eda6b51cc4f6ee99be3dd5537b85e389e47bda9/src/distributions/base-installer.ts#L190-L191 The conversion is missing in `semeru/installer.ts`, so it causes semeru installation failure.

Long story short: I want to migrate my Python-Google App Engine-based app to Kotlin. The samples are there, however, it turns out they are out of date :(. I thought...

I will update the PR soon, so please keep it open for a while.

I believe the PR is in a good shape, so it would be nice if somebody could review/merge it.

@eskatos , what are the credentials?

> It seems the test executors are dying unexpectedly on Windows. But they should not as the Gradle version running the tests hasn't the changed code I have got a...

I would try. Previously I rented a Windows machine, however, it disappeared somehow.

`InputChanges` is `@since 5.4`. If you want to support 4.10, you could ship two classes for the tasks: one that uses 4.10 API only, and another one that is Gradle...

It takes openrewrite ~15sec to [scan the classpath when searching for the recipes](https://github.com/openrewrite/rewrite/issues/3899), so I excluded `scanClassLoader(...)` call. That change alone significantly improves `rewriteRun` performance. Unfortunately, the current `RewriteRunTask` does...