Florian
Florian
Ok, now I see what you mean, sorry. Grep-ing `libuv` doesn't show me any uses of `getdents` or `getdents64` syscalls, so I guess that optimization would need to be added...
> I'm leaning towards the latter because from some testing a symlink will return `UV_DIRENT_LINK` rather than follow the link. I think the file system limitation https://github.com/JuliaLang/julia/issues/53153#issuecomment-1945612873 still applies, and...
> Ah so check :unknown too No, I meant to use `isfile` inside `readdir_types` when the filesystem does not provide the type info, which makes it behave like the initial...
> I cannot deploy to GitLab anymore. Maybe this is related? > > The error I got is > > ``` > $ pip3 install css-html-js-minify > error: externally-managed-environment >...
Hi, here is a list of key binds I often use when working with `zsh` and with `vi` mode enabled (`set -o vi`, also works with `bash`): - `vv` -...
Wow, I had already forgotten about this package. I just tested it and its amazing :) Keep up the great work!
There was a bit of a struggle with the tests on windows: We use `isreadable` in one case, but that can give inaccurate results on windows, so I decided to...
I think this report here is related: https://github.com/JuliaLang/julia/issues/53570#issuecomment-2096980550 I can also reproduce that with other packages, e.g. `info_cachefile("Revise")` gives the same error, but only after invoking it twice.
I have looked a bit into this issue (using v1.12 master). The error seems to be coming from here: https://github.com/JuliaLang/julia/blob/25c8128d079a48d2e964d47dd9d5e39a7d3641d6/src/staticdata.c#L3666-L3669 In particular, its always the checksum check there that fails,...
That last error is due to #49866 in which the signature of an internal method was changed, which is used by PkgCacheInspector.jl. Should be straightforward to fix, will make a...