Florian

Results 80 comments of Florian

The open question is: What color do you put for something like a `heatmap` with a gradient?

> Another heatmap, of course! Yeah, we probably should. I am quite busy at the moment, but hopefully I can tackle this next weekend or so.

The previous `ispath` seems to do more than the new one based on `jl_fs_access`. Need to take another look at that. ``` Test Failed at /cache/build/tester-amdci4-10/julialang/julia-master/julia-708a68b807/share/julia/test/file.jl:276 Expression: length(TEMP_CLEANUP) == 1...

Two more things to do: - [ ] (Won't) Fix windows failures -- failures are expected, as permission bits are different from windows ACLs (https://github.com/JuliaLang/julia/pull/53320#issuecomment-1953133816) - [x] Fix new `Warning:...

I don't understand the windows test failures. I collected this debug output with CI ``` From worker 11: StatStruct("C:\\Users\\julia\\AppData\\Local\\Temp\\jl_dn0CoZ\\subdir" size: 0 bytes device: 344850202 inode: 75248 mode: 0o040666 (drw-rw-rw-) nlink:...

Ok. I went ahead and added another note to the doc strings.

Its meant to wrap an `Array` around a `Memory`: https://github.com/JuliaLang/julia/blob/e460d357d48d121f55e8007d35f6848e9983cfac/base/array.jl#L3066-L3072

I think not, because - it was added as a safe counterpart to `unsafe_wrap`, which itself is only meant to wrap an `Array` around a `Ptr`, - the arguments are...

> I wondered if the flags to `uv_fs_scandir` provide that option, but I can't see docs for that function [here](https://docs.libuv.org/en/v1.x/fs.html) Its here: https://docs.libuv.org/en/v1.x/fs.html#c.uv_fs_scandir_next It says it works similar to Linux's...

I think those two are meant to be used together: with `uv_fs_scandir` you can setup an iterator (the mentioned callback), and with `uv_fs_scandir_next` you can walk it. But then I...