Adam Jensen
Adam Jensen
I've been thinking about refactoring the `initialize` and `address_finder` code to make it easier to test, fully migrate to goblin where we can (#50), etc. py-spy has a cleaner and...
A couple of tests fail on Windows when profiling newer rubies: ``` ---- sampler::tests::test_sample_single_process_with_time_limit stdout ---- thread 'sampler::tests::test_sample_single_process_with_time_limit' panicked at 'unexpected error: initialize Caused by: 0: get ruby VM state...
I often run rbspy to get an immediate live view of what a program is doing and don't want to save the output afterward. py-spy supports this type of view...
## Changes This PR implements support for resetting the `net` device. Resolves #3074. ## Reason The VirtIO spec says in [section 3.1.1](https://docs.oasis-open.org/virtio/virtio/v1.1/cs01/virtio-v1.1-cs01.html#x1-930001): > The driver MUST follow this sequence to...
Rust shipped with a stable [`std::os::windows::io::OwnedHandle`](https://doc.rust-lang.org/std/os/windows/io/struct.OwnedHandle.html) ([RFC](https://internals.rust-lang.org/t/pre-rfc-i-o-safety/14585)) in 1.63. Let's consider using it as an improved `ProcessHandle`. References: - https://doc.rust-lang.org/std/os/windows/io/struct.OwnedHandle.html - https://internals.rust-lang.org/t/pre-rfc-i-o-safety/14585 - https://github.com/rbspy/read-process-memory/pull/16 - https://github.com/rbspy/read-process-memory/pull/17 - https://github.com/rbspy/read-process-memory/pull/21
The following PR makes the Form ID parameter optional when pushing to Aggregate: https://github.com/opendatakit/briefcase/pull/788
Hello, all. There seems to be demand for ARM support in Lilliput, and several folks have proposed how to do it, but it's not clear what the project maintainers would...
As discussed in #157, this PR contributes the following: 1. Adds dependencies built for macOS on ARM / Apple Silicon 2. Removes dependencies built for macOS on Intel x86_64 3....
- [X] Have you followed the [guidelines for contributing](https://github.com/Homebrew/homebrew-core/blob/HEAD/CONTRIBUTING.md)? - [X] Have you ensured that your commits follow the [commit style guide](https://docs.brew.sh/Formula-Cookbook#commit)? - [X] Have you checked that there aren't...
The upcoming ruby 4.0 release includes a change to the `RClass` type that we need to accommodate. I think switching from `rclass.super_` to `rclass_ext.classext.super_` (via `RClass_and_rb_classext_t`) is what we want....