Sebastian Schuberth

Results 1576 comments of Sebastian Schuberth

> I wonder what are the use cases for bottom-up breadth first search? See e.g. the discussion at https://github.com/heremaps/oss-review-toolkit/pull/1903#discussion_r341245108 for a use-case.

Sorry, you're right @ilya-g. I didn't get that the emphasis was on *bottom-up*, not on BFS in general. The discussion I referred to only explains the use-case for BFS vs....

> What the original test in question was trying to achieve can probably be best answered by @sschuberth. The code where this Kotest regression occurred is [here](https://github.com/oss-review-toolkit/ort/blob/5bd616f052557f20280c3c758dd5acb889f8aba2/plugins/scanners/fossid/src/test/kotlin/FossIdTest.kt#L567-L580), the test was...

> Suggestion: Thanks, but how you avoid the test to really take "a long time" then? The test case should complete as quickly as possible.

> or the corresponding Kotest blocking/timeout configuration. I just looked at the implementation for Kotest's `shouldTimeout`, and it turns out it does the same thing that we did manually, see...

Thanks guys, I've [fixed this in our code](https://github.com/oss-review-toolkit/ort/pull/7450).

BTW, does anyone have an idea why ./gradlew -Porg.gradle.configuration-cache=false publishAndReleaseToMavenCentral does not work if I have `org.gradle.configuration-cache = true` in `gradle.properties`? While I get ./gradlew -Porg.gradle.configuration-cache=false properties | grep org.gradle.configuration-cache...

> Either this or `-Dorg.gradle.configuration-cache=false`. `-P` sets the project property and is not suitable for most of the Gradle configuration. I've never really understood the difference TBH. I thought that...

Chiming in here, no, this is not possible @obarat (to the best of my knowledge). JIB cannot run arbitrary commands as part of its image build process. Instead, you need...

Looks like this duplicates https://github.com/glideapps/quicktype/issues/898 / https://github.com/glideapps/quicktype/issues/336.