Chris Sadler

Results 13 issues of Chris Sadler

Let's say I have a situation like this: ```rust use foo::bar::{baz, quxx}; ^~~ unused import ``` If I use the "remove unused import" assist, I end up with ```rust use...

Consider the following example: ```rust #[rstest] #[case("foo", |_| {})] fn test src/lib.rs:12:34 | 34 | fn foo

## Relevant Issue/Bug N/A ## Requested Solution/Feature I've come across a situation where I need to resolve multiple pieces of information about a global (i.e. some additional metadata in addition...

enhancement

Both [GCC](https://gcc.gnu.org/onlinedocs/gcc/Instrumentation-Options.html#index-fsanitize_003daddress) [and](https://github.com/google/sanitizers/wiki/AddressSanitizer) [Clang](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) (and [MSVC partially](https://docs.microsoft.com/en-us/cpp/sanitizers/?view=msvc-170)) provide support for various [sanitizers](https://github.com/google/sanitizers) - dynamic analyzers that can do things like detect usage of undefined behavior, memory safety issues (use after...

`ion-c` used to allocate a [global symbol table](https://github.com/amzn/ion-c/blob/a9af6be3f2ed38d4775257adfa5672c845cac361/ionc/ion_symbol_table.c#L215) that's used to pool/cache global symbols. This was later put into [thread-local storage (TLS)](https://github.com/amzn/ion-c/commit/44b6d5e688a1147fce1b74b616c640cfd12a6a17#diff-f5b0a06ee94bca57b08db344a393a3424ba865e145a73a3438c149ff38eb83d3R215), presumably because of thread safety concerns, and this...

While ubiquitous, CMake is a rather baroque build system. It's configuration DSL is not very ergonomic nor easy to work with, and it's frustrating to debug configuration issues. It has...

This is a bit of a weird corner case, but imagine I have the following fragment: ```sql SELECT * FROM dummy_fun_1() AS a LEFT JOIN dummy_fun_2() AS b ``` where...

Currently, the UDF API returns a `Box` to indicate failure. This is fine if you don't need to inspect errors once they come out of the PLR evaluator. However, it...

> Note: Please use Issues only for bug reports. For questions, discussions, feature requests, etc. post to dev group: https://groups.google.com/forum/#!forum/rocksdb or https://www.facebook.com/groups/rocksdb.dev ### Expected behavior Using the C API, I...

> Note: Please use Issues only for bug reports. For questions, discussions, feature requests, etc. post to dev group: https://groups.google.com/forum/#!forum/rocksdb or https://www.facebook.com/groups/rocksdb.dev Hi folks, I have an application that dynamically...