Kristoffer Carlsson
Kristoffer Carlsson
https://s3.amazonaws.com/julialang-reports/nanosoldier/pkgeval/by_hash/cf4f1ba_vs_edb3c92/UnsafeArrays.primary.log ``` Base.mightalias: Error During Test at /home/pkgeval/.julia/packages/UnsafeArrays/4H6Ug/test/uview.jl:150 Test threw exception Expression: false == #= /home/pkgeval/.julia/packages/UnsafeArrays/4H6Ug/test/uview.jl:150 =# @inferred(Base.mightalias(view(B, :, 2:5), view(A, 2:5, :))) MethodError: mightalias(::SubArray{Int32, 2, Matrix{Int32}, Tuple{Base.Slice{Base.OneTo{Int64}}, UnitRange{Int64}}, true},...
In https://github.com/JuliaIO/BufferedStreams.jl/actions/runs/10114228187/job/27972388361, the cache step seems to take about 2 minutes. It is however unclear where the time is actually spent since looking at the timestamps: it is not possible...
The current way of loading extensions when precompiling an extension very easily leads to cycles. For example, if you have more than one extension and you happen to transitively depend...
- Fix a missing check to `always_reprint` that has been fixed in Pkg - The header was in `light_green` while in Pkg it was `green`. - The progress bar for...
Backported PRs: - [x] #55524 - [x] #55500 - [x] #55506 - [x] #55564 Need manual backport: - [ ] #55407 - [ ] #55522 Contains multiple commits, manual intervention...
Fixes https://github.com/JuliaLang/julia/issues/49440 (and all other cases where `displaysize` is used in Base with the expectation that this actually gives something related to the terminal). Needed because of https://github.com/JuliaLang/julia/issues/34721
If you use another Julia installation that is compatible with the precompile file it will point to the wrong place: ``` julia> using Revise julia> Sys.BINDIR "/Users/kristoffercarlsson/Downloads/gitrepo/julia-1.10.4/bin" # the Julia...
`JET.@report_opt` shows more things than are needed for trimming to work. A useful mode could be to restrict the printed things to only those that would prevent trimming.
Some examples and tutorial have the style of: ```julia a = ... b = ... function do_something(a, b) .... end c = do_something(a,b) ``` Others have something like ```julia function...
Fixes #1031