David Frank

Results 7 issues of David Frank

Say, I have a 1:1 relation between User and Car. ``` case class User(name: String) extends ActiveRecord { lazy val car = hasOne[Car] } case class Car(name: String) extends ActiveRecord...

NODE-1464 This tool allows running a command in a separate Linux namespace, optionally under chroot. Optionally, it also sets up the required mounts. The implementation was taken from [Arch Linux](https://github.com/archlinux/arch-install-scripts/blob/master/run_with_chroot.in)...

refactor
@idx
@node

These dependencies were previously fetched via curl during the IC-OS build but fetching them via Bazel is a better practice. Later MR-s will depend on the newly added targets. Context:...

chore

This is a proposal for preferring iterating over Entries rather than `(K, V)` tuples. Entries provide lazy access to values which means that values don't need to be loaded and...

b3sum is quite slow when operating on [sparse files](https://wiki.archlinux.org/title/Sparse_file). To reproduce, create a sparse file with some data and a hole and invoke b3sum: ```bash $ dd bs=1G count=1 if=/dev/random...

I noticed that the implementation for creating a filesystem from a tar limits file xattrs to "security.capability" and "gnu.translator" ([source](https://github.com/tytso/e2fsprogs/blob/master/misc/create_inode_libarchive.c#L473)). Is there a particular reason for limiting which xattrs are...

We have seen that in a small number of cases the QEMU process gets locked up after VM shutdown and cannot be killed by libvirtd. This PR adds code that...

chore
@idx
@node
CI_ALL_BAZEL_TARGETS