Nick Zavaritsky

Results 32 issues of Nick Zavaritsky

If a tag with spaces is assigned to a post, it's not rendered. A fix ```diff index 3ab8030..881283a 100644 --- a/themes/codex/layouts/partials/tags.html +++ b/themes/codex/layouts/partials/tags.html @@ -2,7 +2,7 @@ {{ with .Param...

lmb once said: My personal preference would be to make the parts of bpf2go that are useful available via Go API so that power users can build their own tools....

`xdp_buff` has a metadata area, which an XDP eBPF program can use to stash some info (using `bpf_xdp_adjust_meta` and direct packet access to write data). This information is transferred to...

Linux ENA driver

**Is your feature request related to a problem? Please describe.** Large WASM modules take a while to compile, impacting startup times. Browsers solve this problem by caching compiled module data....

feature request
wasm

This is a POC for compiled WebAssembly module cache proposal (#36671). ##### Checklist - [ ] `make -j4 test` (UNIX), or `vcbuild test` (Windows) passes - [ ] tests and/or...

c++
semver-major
lib / src
wasm

The current bytecode sequence has an important property: no instruction appears twice. Hence for each instruction handler the next instruction handler to dispatch to is perfectly predictable. It amplifies the...

The benchmark uses `time()` from `time.h` to measure elapsed time. It measures time with 1 second resolution. As certain runs complete in 6 seconds or less, the not so fine...

### Description Recently several language-specific build tools emerged. These tools produce a container image without having to write a Dockerfile. Golang has [ko-build](https://ko.build). Java got something as well. (Besides convenience,...

kind/feature
area/build

The generated state machine invokes `YYRESTORE` without calling `YYBACKUP` first (for certain inputs). It results in a subsequent crash since we are restoring with a bogus state. Please let me...

Extract imports from "bpf2go.hfiles.go" in the output dir, scan packages for header files, and expose headers to clang. C code consumes headers by providing a go package path in include...