Kristoffer Carlsson

Results 400 issues of Kristoffer Carlsson

The following code no longer throws on Julia 1.8 leading to a test failure: https://github.com/invenia/Memento.jl/blob/eccf67abe9b139e7ea893dd25f3ef6671c4de8b3/test/handlers.jl#L117-L123 I haven't looked into it in detail but it would be good to understand what...

The desire here is to close the `TranscodingStream` without closing the underlying buffer. This is documented in https://juliaio.github.io/TranscodingStreams.jl/latest/examples/#Explicitly-finish-transcoding-by-writing-TOKEN_END-1 and says that you should write a `TOKEN_END` token to the stream....

```julia julia> m = which(Base.get_preferences, Tuple{Base.UUID}) get_preferences(uuid::Union{Nothing, Base.UUID}) in Base at loading.jl:2006 julia> CodeTracking.definition(String, m) ERROR: MethodError: no method matching +(::Nothing, ::Int64) Closest candidates are: +(::Any, ::Any, ::Any, ::Any...) at...

Backported PRs: - [x] #46030 - [x] #46183 - [x] #46547 - [x] #46550 - [x] #46551 - [x] #46618 - [x] #46553 - [x] #46667 - [x] #46673 -...

release

When loading an external copy of LinearAlgebra (as in the tests for https://github.com/JuliaLang/LinearAlgebra.jl) there are some new method ambiguities that arises, even if the external copy should have the exact...

linear algebra
types and dispatch

``` julia> (3,2).┌ Error: Error in the keymap │ exception = │ MethodError: Cannot `convert` an object of type Int64 to an object of type Symbol │ Closest candidates are:...

REPL

In https://github.com/JuliaLang/julia/pull/46690, I want to deserialize an object on a precompile worker and it is quite important that this is fully precompiled since a lot of precompile workers are spawned...

The current code for code loading is quite stateless (although there is currently a cache for parsed TOML files). Every time information about a package is looked up, the code...

packages
needs pkgeval

can be used by JLLs to avoid scouring through the file system for the Artifacts.toml when it already knows where it is JLLWrappers PR at https://github.com/JuliaPackaging/JLLWrappers.jl/pull/45

This used to work on 0.16.3: ```julia a = PseudoBlockArray(zeros(10 + 12, 10 + 12), [10, 12], [10, 12]) b = rand(22, 22) a .+= b .* 1.0 ``` It...