Brandon Sanderson
Brandon Sanderson
This allows listening on `0.0.0.0` from within a container. This is useful when trying to use `docker-compose` to bring up a full set of servers for development. (Apps listening on...
In this small sample c file: ```c typedef struct test{ int foo; } test_t; int main(){ struct test bar; struct test_2 { int foo; } baz; return bar.foo + baz.foo;...
**rust-analyzer version**: rust-analyzer version: 0.3.1932-standalone (47a901b9b 2024-04-21) **rustc version**: 1.77.2 **editor or extension**: VSCode Insiders with RA 0.3.1932 It's pretty common for running tests via the Test Explorer to require...
Using a `tokio_test::io::Mock` to read and write simultaneously via `tokio::io::split` causes lockup if the `Mock` is waiting, and there's no data to read. This is a simple test, enough to...