Erik Sjölund
Erik Sjölund
The intrinsics blend functions * __m256i _mm256_blendv_epi8(__m256i v1, __m256i v2, __m256i mask) * __m256i _mm256_blend_epi16(__m256i a, __m256i b, const int imm8) * __m256i _mm256_blend_epi32(__m256i a, __m256i b, const int imm8)...
I adjusted the function `kj::String consumeNumber()` so that it now more strictly follows the JSON number syntax as defined in: https://tools.ietf.org/html/rfc7159 Disclaimer, I suggest someone else verifies this. I am...
I wrote some instructions of how to create an Ubuntu 17.04 Singularity container with cufflinks installed here: https://github.com/eriksjolund/cufflinks-ubuntu-singularity-container
It would be nice if ``` cufflinks --help ``` would print to stdout instead of stderr. That is the standard way, at least for all GNU software. You would then...
A quick fix for https://github.com/moby/moby/issues/3639#issuecomment-482098988 Signed-off-by: Erik Sjölund
**Description** Docker has an optional builder [BuildKit](https://docs.docker.com/engine/reference/builder/#buildkit) that interprets the `VOLUME` instruction in a new way. Implement an optional mode in Buildah that interprets the `VOLUME` instruction in the same...
The error message that is triggered by too many symlink dereferences contains a non-existent path instead of the path to the symlink that causes the loop. The path is set...
Add Podman socket activation example in _README.md_ I'm not exactly sure about the text "_Requirements: Podman version 4.5.0 or higher._". (I used that version for testing)
### Description The documentation https://github.com/moby/moby/blame/9d1541526c5beab51d2344b47624a160f199bbe6/docs/contributing/set-up-git.md#L69 suggests the command: ``` $ git clone https://github.com/moxiegirl/moby.git moby-fork ``` There is no public GitHub git repository with the URL: `https://github.com/moxiegirl/moby.git` I guess that the...
I would like to have a container use ``` sd_pid_notify_with_fds(0, 0, "FDSTORE=1\nFDNAME=foobar", &fd, 1); ``` (see [`man sd_notify`](https://www.freedesktop.org/software/systemd/man/sd_notify.html)) to store an active TCP socket. It would then be possible to...