Akhil Velagapudi

Results 16 issues of Akhil Velagapudi

I'm hoping to compile [`libzmq-sys`](https://github.com/jean-airoldie/libzmq-rs) using crate2nix but ran into an issue. `libzmq-sys` uses cmake and [vendored sources](https://github.com/jean-airoldie/zeromq-src-rs) to compile and statically link zmq. I tried the following override: ```nix...

This is useful when handling untrusted inputs. E.g. a client could pack extra fields into messages in order to increase server load. Enforcing a max size limit can help, but...

To reproduce: ```rust let path = Path::new("target").join("test.mdb"); fs::create_dir_all(&path)?; let mut env_builder = EnvOpenOptions::new(); unsafe { env_builder.flag(Flags::MdbNoSync); env_builder.flag(Flags::MdbWriteMap); } let env = env_builder.map_size(10 * 1024 * 1024 * 1024).max_dbs(1000).open(path)?; let db:...

After the last receiver is dropped, all the items in the channel are effectively abandoned and can never be accessed. In this scenario, I think it's appropriate to drain the...

From what I can tell, it's currently defined in `./script/install-cni.sh` but ignored. So, it's not possible to force the CNI to use an existing kubeconfig (e.g. `/etc/kubernetes/kubelet.conf`). Also, if there's...

- One-line PR description: Move EndpointSlice Reconciler into Staging - Issue link: https://github.com/kubernetes/enhancements/issues/3685

sig/network
cncf-cla: yes
lgtm
size/L
kind/kep
ok-to-test

Context: https://github.com/mrhooray/crc-rs/issues/92#issuecomment-1972696261 Some advantages of `--cfg` flags: - Don't have to be strictly additive - Can only be set when compiling a binary (hidden to libraries) - Can throw a...

Blocked by https://github.com/rust-lang/rust/issues/86656.

If binary size is important, it's better to generate the CRC tables (once) at runtime instead of embedding them into the binary. This should be explained in the docs along...

good-first-issue