Arno Gobbin
Arno Gobbin
Are you saying you'd prefer them to be importable from borg's code? I'm asking because the docs say that the internals aren't stable and that users should use the CLI....
> It might be a good reason to introduce private naming and public naming I'd suggest having a very very small public stable API, and the models could be in...
I opened a pull request [there](https://github.com/borgbackup/borg/pull/8343); I can add more tests if you validate those. I'm on macOS and don't use homebrew so installing borg here is kind of a...
As I said in a discussion on this repo, I'd like to try to contribute these operations, but I don't know how to contribute to jax-metal. The source doesn't seem...
Same thing. Details: - Nothing I do in Python files changes what Claude sees as selected. If I switch to a Python file, the previous selection stays in Claude's UI,...
> Can you show me a screenshot of the input box? > > If you have accidentally clicked on the name of the file, it might toggle off the context...
I have the same problem: `ensure_cache_path` hangs indefinitely, until I send `KeyboardInterrupt`.
Hi @gmarkall, I "fixed" it this way in my code: ```python from os import environ from tempfile import TemporaryDirectory with TemporaryDirectory() as temp_dir: environ["NUMBA_CACHE_DIR"] = temp_dir # work around https://github.com/numba/numba/issues/8755...
If this can help, I think this should be a cross-platform fix anyway? We can use `os.stat` to check for write permissions on a potential cache folder and reject it...