Ben Reeves

Results 22 issues of Ben Reeves

In Command mode, 'dh', 'dl' dont work properly If I am correct in assuming that 'dh' and 'dl' should delete the characters to the left of and to the right...

I don't necessarily expect this to be merged, but I thought I would more publicly show the changes that I have made on my local fork of stevenarealla. I am...

It's a little unfortunate that if you have a clean 4k page of chunk data (16 * 16 * 16), you have to copy that into a slightly larger buffer...

`crossbeam_utils::thread::Scope` owns a vector of shared join handles: https://github.com/crossbeam-rs/crossbeam/blob/450d237d1546ac135d21f75b61fdf5a944e8421c/crossbeam-utils/src/thread.rs#L193-L203 Each call to `scope.spawn()` pushes a new handle to the vec: https://github.com/crossbeam-rs/crossbeam/blob/450d237d1546ac135d21f75b61fdf5a944e8421c/crossbeam-utils/src/thread.rs#L458-L459 The vec never shrinks until it is drained all...

bug
crossbeam-utils

We currently use bindgen 0.59.1 for our very large codebase (~1-2 million lines of C). The other day, we switched all of our C code from using `__attribute__((...))` syntax to...

# ISSUE: libpmemobj: Allocated objects not aligned to cache boundaries The [man page](https://pmem.io/pmdk/manpages/linux/v1.5/libpmemobj/pmemobj_alloc.3) for `pmemobj_alloc` states the following: > The allocations are always aligned to a cache-line boundary. I am...

Exposure: High
Priority: 4 low
Type: Bug

Hi team! I am with a group of graduate students from the University of Michigan who would like to investigate the Orion file system that you presented at FAST '19....

Fixes #95186. Fixes #95187. I've done my best to create a comprehensive test suite for the interaction between `min_specialization` and `const_trait_impls`. I wouldn't be surprised if there are interesting cases...

A-traits
T-compiler
A-specialization
S-waiting-on-review
F-specialization
F-const_trait_impl

I'm using `nom` for Advent of Code 2023 and a pattern I keep using over and over again is "whitespace-separated tuple". ```rust let parser = tuple(( thing1, char(' '), thing2,...

## Requested functionality When writing an HTTP server with hyper, I want to be able to receive and read the [chunk extensions](https://www.rfc-editor.org/rfc/rfc9112#name-chunk-extensions) that clients send when using HTTP/1.1 chunked encoding....

C-feature