Ben Harris

Results 10 comments of Ben Harris

Pretty straightforward until you get to reconstructing which PRs are being merged from the test HEAD. Easiest way to go is checking if `pulls[-1].is_optimistic()`, and then running a different function...

The idea is to merge multiple PRs together and build/test them all once. On 29/03/2014 12:56 am, "Reid Draper" [email protected] wrote: > What's the driving factor here? Why not simply...

The idea was that one PR takes a very long time. If you end up with 5 PRs just fixing spelling mistakes in bors it would be handy to have...

I believe the idea was for the reviewer to say `r+ optimistic=1`

Paste-mode button that bubbles the ctrl-V one time then resets.

You can probably use the libloading crate to load the libtorchtrt_runtime library at runtime. Maybe something like the following in your main. ``` let lib_trt = unsafe { libloading::Library::new("/path/to/libtorchtrt_runtime.so").unwrap() };...

FYI - I have the following in my project that seems to work on nightly for my needs with pytorch/TensorRT. ``` #![feature(native_link_modifiers_as_needed)] #[link(name = "torchtrt_runtime", kind = "dylib", modifiers =...

I've just patched this locally in `netlify-cms-core/src/backend.ts` functions `entryToRaw` and `entryWithFormat`. Around the calls to either `format.toFile` or `format.fromFile` I'm just doing a wrap/unwrap with a special key `rootArray`. ```...

You don't get the SIGTERM then though, just straight to SIGKILL if the batch takes too long. That might be worse as the server isn't notified or anything. Yes, the...

Yeah. But there is only 1 timeout value, so it's the same between SIGINT to SIGTERM, and SIGTERM to SIGKILL. On Fri, 23 Feb 2024, at 6:08 PM, Niklas Fiekas...