Róbert Papp
Róbert Papp
## Changes Using `npx` has all the same benefits as `--global` (e.g. caching), except it does not pollute the global namespace and installed dependencies. This also works better on CI,...
**Is your feature request related to a problem? Please describe.** Nowadays, it is very common to add repositories project-wide rather than in every module or other way: ```kotlin dependencyResolutionManagement {...
**Describe the bug** `CONTRIBUTING.md` contains a reference to a non-existent file in the repo and 2 links which are 404. **To Reproduce** Open https://github.com/JetBrains/gradle-intellij-plugin/blob/master/CONTRIBUTING.md#run-integration-tests **Expected behavior** CONTRIBUTING.md contains actionable information....
Conversation split from https://github.com/mockito/mockito/pull/2894#discussion_r1096034581 I strongly recommend adopting this approach in this repo: https://jakewharton.com/build-on-latest-java-test-through-lowest-java/ I'm opening this issue to discuss if there's an agreement. Jake's point in that guide is...
I'm trying to translate this Hamcrest line to kotest: ```kotlin assertThat(myMap, either(not(hasKey(myKey))).or(not(instanceOf(HashMap::class.java)))) ``` and I found `any { }`, but I cannot call it like: ```kotlin val myMap = mapOf("a"...
## Repro 1. Setup: 1. Clone https://github.com/cashapp/paparazzi at [d146c97](https://github.com/cashapp/paparazzi/commit/d146c9739e3f434ef0c196061ce66e26ba20bff5) 2. Apply this patch: Patch ```patch Subject: [PATCH] Sync up spotless.kotlin.ktlint config overrides with .editorconfig and use a single source of...
## Description Trace asynchronous calls across Handler messages. It's probably not acceptable in its current form due to many allocations. I wonder how this could make it to production. Is...
**Glide Version**: 4.16.0 **Integration libraries**: none **Device/Android Version**: API 30 emulator **Issue details / Repro steps / Use case background**: I'm trying to migrate by complex SVG loading setup from...
I have a model property `Map statuses = new EnumMap(Line.class);` where these are the enum definitions: ```java public enum Line { unknown /*Line$1*/, Bakerloo /*Line$2*/, ... } public enum StatusChange...