Alexey Yudichev

Results 17 issues of Alexey Yudichev

This is a issue tracker. Please use our mailing list for general questions: https://groups.google.com/forum/?fromgroups=#!forum/jacoco Also check FAQ before opening an issue: http://www.jacoco.org/jacoco/trunk/doc/faq.html ### Steps to reproduce Run coverage on: ```...

feedback pending
component: core.filters

```java @Value.Immutable abstract class BaseDescribedSubscriptionState { @Value.Parameter public abstract SubscriptionState getState(); @Value.Parameter public abstract String getMessage(); public final Optional asFailure() { return isFailure() ? Optional.of(forFailureReason(String.format("%s: %s", getState(), getMessage()))) : Optional.empty();...

bug

To be helpful and cover scenarios like the one described here: https://www.exler.ru/likbez/google-photos-kak-polzovatsya-i-vsyakiye-khitrosti.htm#nuoq

The following in printed to the console and the Log in to Google window is empty. ``` Framebuffer object format is unsupported by the video hardware. (GL_FRAMEBUFFER_UNSUPPORTED)(FBO - 820) Error...

Logs and crash dump: [main.log](https://github.com/ylexus/jiotty-photos-uploader/files/4290331/main.log) [hs_err_pid11798.log](https://github.com/ylexus/jiotty-photos-uploader/files/4290332/hs_err_pid11798.log) ``` # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f8e7987ce78, pid=11798, tid=11820 # # JRE...

As per https://github.com/google/java-photoslibrary/issues/30#issuecomment-904352898, I can confirm that interrupting the upload via interrupting the thread blocked on `client.uploadMediaItemCallable().futureCall(uploadRequest).get()` works. However, as before, both `client.uploadMediaItem()` and `client.uploadMediaItemCallable().call(uploadRequest)` block uninterruptibly, because `ApiExceptions.callAndTranslateApiException` calls...