Alexander Zlatin

Results 22 comments of Alexander Zlatin

Just wanted to add my +1 that this issue exists and makes it hard to optimize an app for low-memory scenarios, given that bitmaps are commonly one of the largest,...

Just wanted to bump and +1 this issue. A use-case is to use the system clock and wall clock together to create a monotonically increasing wall clock (that ignores the...

https://github.com/bazelbuild/rules_jvm_external/tree/master/examples/android_local_test still uses the native bazel/blaze code and not skylark AFAICT, in which I was unable to find where/how it configures instrumentation. I also don't know if it does: I...

This works for me in the current version: ``` expectThrows { }.get { message }.isNotNull().contains("somestring") ``` as does: ``` expectThrows { }.assert("message") { expectThat(it.message).isNotNull().contains("somestring") } ```

You could add an extension method that aliases `message()` to `get { message }`.

What are your thoughts of accepting a relative path (relative to the module path)? Then the implementation would do something like: fileWithIssues.absolutePath.stripPrefix(File(projectDir.absolutePath, baseDir).absolutePath) I imagine that's the usual use-case and...

Here's my concrete proposal that should be mostly backwards compatible: - accept the directory of the project `projectRootPath` as an input with `@PathSensitive(PathSensitivity.NAME_ONLY)` defaulting to the current dir by convention...

This is now fixed in 1.5.0: https://github.com/php-ds/ext-ds/issues/199 Any chance we could get a new build up on deb.sury.org?

I got a similar problem but in reverse, but possibly related: - We get a false positive on `androidx.compose.ui:ui-test-manifest` in CI which is added as a debugImplementation - Originally it...