Colin Adler

Results 11 issues of Colin Adler

Given this example function ```rust use cached::proc_macro::cached; use cached::UnboundCache; #[cached( type = "UnboundCache", create = "{ UnboundCache::with_capacity(1) }", convert = r#"{ cmds.len() }"# )] fn generate_help { CreateMessage::default() } ```...

We have a use case where we're compiling an ebpf program in Rust, but then loading/running it inside Go. The package we're using in Go is https://github.com/cilium/ebpf. But, we seem...

Instead of storing projects at `~/Projects/cdr/code-server`, we should also separate them by host like `~/Projects/github.com/cdr/code-server` so multiple projects don't overlap

During `Close()`, it's possible for `WriteNotify()` to race a channel send with the channel close. See the race below: ``` ================== WARNING: DATA RACE Write at 0x00c000055450 by goroutine 18:...

Fixes https://github.com/coder/coder/issues/13041 Instead of removing the mappings of unhealthy coordinators entirely, mark them as lost. This prevents peers from disappearing from other peers if a coordinator misses a heartbeat.

Looks like these were accidentally left unchanged. `goimports` will automatically pick these up and for me it defaults to importing the gnorm mysql driver which causes issues.