Jens Alfke
Jens Alfke
Ah. Your fix does exactly what I just suggested. :) I don't see how this could cause trouble, because it just inserts a zero length blob, which is exactly what...
Here's a slightly faster/smaller fix. I've tested it and it works for me: ``` else if ([obj isKindOfClass:[NSData class]]) { const void* bytes = [obj bytes]; if (!bytes) { //...
Not all strings are nul-terminated. Raw text files are a common case, as mentioned above. And this comes up a lot in FFI: I’ve worked with several languages whose strings...
> this gives the author of a log the power to invalidate its existing tail at any moment, by issuing a forking entry and sharing it with the receivers. This...
I'm not a Python expert, but I looked up the module `imp` and it's been [deprecated since Python 3.4](https://docs.python.org/3.10/library/imp.html), and no longer exists at all in the Python 3.12.1 that...
I was able to work around the problem by running `conda install python=3.11` -- after that, installing coremltools ran successfully.
If this is considered an enhancement, then the bug is on the Installing CoreML Tools web page -- it should tell people to run `conda install python=3.11` before installing coremltools....
Hm, the Windows clang builds fail with an error I’ve never seen before, in code I didn’t touch: ``` 2023-12-01T19:14:13.0706185Z D:/a/doctest/doctest/doctest/parts\doctest_fwd.h:617:47: error: unsafe buffer access [-Werror,-Wunsafe-buffer-usage] 2023-12-01T19:14:13.0707209Z bool isOnStack() const...
On Ubuntu, the only test failure is `TestReplicatorRevocationsMultipleAlternateAccess`, which gets several unexpected errors of the form `RetryLoop for Wait for condition options giving up after 201 attempts`. No idea what...
**ci / test-race** is hitting JS fn timeouts during `TestGraphQLConcurrently`. Partly that's because I left JS logging at debug level so there are zillions of log lines (oops) but also...