Matthias Käppler

Results 97 comments of Matthias Käppler

I got around to testing this, but it's not working well for me. In fact, I get the reverse effect now: while CTRL+C-ing out of an ADB command seems to...

As to your question about `!logcat`: it adds logic on top of `adb logcat` such as filtering by process ID of the active package by default. There's an open issue...

I'm not sure what the problem is? You install it as you would do outside replicant, just that it saves you a few keystrokes: in replicant: `> install path/to/apk` are...

Not at all, I was thinking about this in fact. I then abandoned the idea again because build output is both dependent on the build system used and the project...

I don't this is a problem with `ReentrantMutex`; it is likely a duplicate of this issue with `rspec-core`: https://github.com/rspec/rspec/issues/14 due how locking semantics changed with Ruby 3.

I actually verified that `ReentrantMutex` is not the cause in https://gitlab.com/gitlab-org/gitlab/-/merge_requests/102625#note_1156203743 by patching rspec-support to use Ruby's `Monitor` type, which is also reentrant. Speaking of which, why does rspect-support not...

Ah I see - makes sense :+1: I wonder if this work is necessary at this point since it is being discussed to remove locks around memoized blocks completely in...

I am running against this too. OpenSSL says that the end-entity certificate that is signed using my self-signed CA keys is correct even with x509 strict mode: ```shell openssl verify...

Is this the list of extensions `cryptography` considers to be required, and why? https://github.com/pyca/cryptography/blob/20c612e5f376a3db59cb5aee63af96b3418e54cf/src/rust/cryptography-x509-verification/src/policy/extension.rs#L35

Thank you @alex @woodruffw, adding the SAN extension fixed the problem for me. Thanks for explaining the rationale as well, I am not overly familiar with the PKIX space so...