Callan Gray
Callan Gray
Using the `add_subdirectory` function in cmake to include a project using a precompiled header will work with VS/MSBuild generators, but the NMake generator will not detect its output binaries and...
When compiling with hipSYCL using the README.md command `cmake .. -DhipSYCL_DIR=/opt/hipSYCL/CUDA/lib/cmake/hipSYCL -DSYCL_COMPILER=hipsycl` I get the attached compiler error multiple times. My guess is a release version of hipSYCL such as...
In some situations it's important that tests can be executed while other static objects are not yet destroyed such as when using NVCC-compiled cuda kernels. Running tests after main finishes...
JMESPath.py is limited in that only the `dict` and `list` derived containers returned by the built-in `json` library are supported in the object hierarchy due to the use of `isinstance`....
**Is your feature request related to a problem? Please describe.** Tags on example tables are not picked up by the `pytest_bdd_apply_tag`. i.e. ```gherkin Feature: My Feature Scenario: My scenario case...
It can be observed from lines such as: https://github.com/Cyan4973/xxHash/blob/38d555879fddae7300ece2c0820b3332c1d5748f/tests/bench/benchfn.c#L32 and: https://github.com/Cyan4973/xxHash/blob/38d555879fddae7300ece2c0820b3332c1d5748f/tests/bench/main.c#L69 that MB and MiB in benchmarks both mean 2^20 bytes instead of 10^6 bytes. This in turn suggests that...
**Describe the bug** Consumers and Producers when `__aenter__()` errors (such as network-related exceptions) leaves the object in a state requiring an explicit `close()` call. Context manager interfaces via the "with"...
### Changes Fixes #1130 where `AIOKafkaProducer` and `AIOKafkaConsumer` raise unclosed resource warning due to an exception raising during `__aenter__()`. `__aenter__()` when an exception is raised should cleanup any partially acquired...
This MR performs a significant change to resolve the issue of not being able to declare CLI positional arguments by passing annotated cli arguments directly to argparse. In doing so,...
This change largely adds support for passing coordinates to DatasetSchema. This additionally involves: * Extending `test_component_raises_schema_error` to support multiple schema arguments and add more test cases. This allows testing `CoordsSchema`...