Adolfo Ochagavía

Results 25 issues of Adolfo Ochagavía

Currently, the docs on the [structure of eStargz](https://github.com/containerd/stargz-snapshotter/blob/6e5d5a0d2769b5fa7e72edfd5df403ad37ebb838/docs/estargz.md) mention that layers are compressed using `gzip`. However, as far as I understand, eStargz also supports `zstd` as a compression mechanism (it...

documentation

Steps to reproduce: 1. Create a script with the following text in it: `import cv2` 1. Click on Script -> Simulate Output: `ImportError: No module named 'cv2'` Am I missing...

[The overview](https://github.com/containerd/stargz-snapshotter/blob/main/docs/overview.md) mentions that some aspects of the snapshotter are configurable through a `toml` file, but I couldn't found a description of the available configuration options. It would be nice...

When building the TOC, it is necessary to provide the full path of each entry, as mentioned in the docs: https://github.com/containerd/stargz-snapshotter/blob/6e5d5a0d2769b5fa7e72edfd5df403ad37ebb838/docs/estargz.md#L81-L84 However, in many systems the path is not guaranteed...

Right now the only possible way to play is by using a keyboard. This makes it impossible to play the game on your phone. It would be worthwhile to add...

I get the following errors: ``` test server::tests::test_client_accept ... FAILED test server::tests::test_invalid_client_message ... FAILED ``` When running the key value storage example I repeatedly get the following error: ``` WARN:raft::server:...

bug

### Steps to reproduce The following test reproduces the issue (you can paste it under `client::test` and run it with `cargo test --features test-registry test_pull_blob_not_found`): ```rust #[tokio::test] #[cfg(feature = "test-registry")]...

bug
help wanted

The matchspec parser contains a call to `unimplemented!` (see [here](https://github.com/mamba-org/rattler/blob/e1eea9acf47cb57ee339a49f2fd794de2d602d45/crates/rattler_conda_types/src/match_spec/parse.rs#L390)). For a program that accepts arbitrary matchspecs, that means specific matchspecs could cause the program to unexpectedly crash. I think...

help wanted
good first issue

There is an error with the current implementation of `DigestBuf::write`, which causes incorrect hashes to be calculated. The problem is that the call to `self.inner.write` is not guaranteed to write...

I'm using `BytesMut::unsplit` in a project and would like to raise an error when the bytes cannot be unsplitted, instead of silently copying. An `Err(_)` would let me know I...