Nicholas Gates
Nicholas Gates
@AdamGS pointed out our API is a little odd here, where an array needs to hold onto its own encoding in order to return it. This isn't a problem for...
### Describe the bug Currently Buffer::empty goes via BufferMut::empty, but this forces an allocation. If we use Bytes::empty instead, then it refers to a static empty bytes slice. Alignment checks...
This was an attempt at building a C API for Vortex. We can revive this later if we want, but the current API is not at all stable or designed...
I accidentally made my macro recursive: pants-plugins/macros.py ```python def my_library(**kwargs): kwargs["tags"] = kwargs.get("tags", []) + ["sometag"] my_library(**kwargs) # instead of python_library ``` pants.toml ``` ... build_file_prelude_globs = ["pants-plugins/macros.py"] ... ```...