Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

JuliaLang/julia

IanButterworth pushed 1 commit to master JuliaLang/julia
  • REPL: run repl hint generation for modeswitch chars when not switching (#56251) Fixes https://github.com/JuliaLang/j... 1fd7ada

View on GitHub

IanButterworth closed a pull request on JuliaLang/julia
REPL: run repl hint generation for modeswitch chars when not switching
Fixes https://github.com/JuliaLang/julia/issues/56003
o314 created a comment on an issue on JuliaLang/julia
If that can help ```julia # def f(g, args...; kwargs...) = g((; kwargs...), args...) ``` ``` # use f(1,2,3; a=1, b=2) do kwargs, args...; (args..., kwargs) end ``` ``` (1, 2, 3, (a = 1, b = 2)) ```

View on GitHub

IanButterworth closed an issue on JuliaLang/julia
Autocomplete fails if `stat` errors, on nightly
My hard drive is slightly corrupted, and it looks like the new autocomplete on Nightly fails when it encounters an error in stat. Since the files are corrupted, it's pretty hard to build a repro...
IanButterworth closed an issue on JuliaLang/julia
Autocomplete doesn't work on Pkg REPL mode on Windows on v1.11
Tried in Windows and Linux, TAB autocomplete ```julia (jl_qkt9Yn) pkg> dev C:\┌ Error: Error in the keymap │ exception = │ IOError: stat("C:\\DumpStack.log.tmp"): resource busy or locked (EBU...
IanButterworth closed an issue on JuliaLang/julia
REPL suggested completion displayed even after becoming inapplicable
![Image](https://github.com/user-attachments/assets/5431d5bc-3973-42e6-a8d8-0e0bc4c8a1e2) As seen in this image, the completion `col -> collect` is displayed despite the closing bracket being adde...
Keno created a comment on a pull request on JuliaLang/julia
@nanosoldier `runtests(["SwapLiterals", "OverflowContexts", "Fuzzy", "HalfIntegers", "ArrayAllocators", "SafeREPL", "SaferIntegers", "ChangePrecision", "Abaco", "Baobzi", "Malt", "Distances", "Dive...

View on GitHub

andreyz4k created a comment on an issue on JuliaLang/julia
Another affected package is Transformers.js which relies on Flux's CUDA extension in its own CUDA extension. https://github.com/chengchingwen/Transformers.jl/blob/master/ext/TransformersCUDAExt/Tra...

View on GitHub

afonsomm starred JuliaLang/julia
jishnub created a comment on an issue on JuliaLang/julia
Locally, I obtain ```julia norm(c1 - c2) / max(norm(c1), norm(c2)) = 8.0597636f-7 eps(cond(A)) = 1.9073486f-6 ``` ```julia julia> using OpenBLAS_jll, LinearAlgebra julia> strip(unsafe_string(ccall...

View on GitHub

gbaraldi pushed 1 commit to gb/memmove-memory JuliaLang/julia
  • Use correct preserve syntax for bootstrapping 1d60543

View on GitHub

cheengshuchin created a comment on an issue on JuliaLang/julia
Ok, I may find a solution for This issue. you may try this.... ```julia A=[1,2,3] B=[4,5,6] C=[(),(:info => false,),(:info => true, :msg => "tyf")] function func(a,b;info=true,msg="CSC") if inf...

View on GitHub

giordano created a review comment on a pull request on JuliaLang/julia
`GC` doesn't seem to exist at this point during bootstrap.

View on GitHub

giordano created a review on a pull request on JuliaLang/julia

View on GitHub

donovaly opened an issue on JuliaLang/julia
wrong location for Julia's start menu entry under Windows
After installing Julia under Windows as normal user, I see that the start menu entry (the Julia 1.11.1.lnk file) is in this path: C:\Users\<username>\AppData\Roaming\Microsoft\Windows\Start Menu T...
gbaraldi pushed 1 commit to gb/memmove-memory JuliaLang/julia

View on GitHub

IanButterworth created a review comment on a pull request on JuliaLang/julia
```suggestion occursin(name, first(s, length(s)-4)) ```

View on GitHub

IanButterworth created a review on a pull request on JuliaLang/julia

View on GitHub

giordano created a comment on an issue on JuliaLang/julia
Minimal reproducer should be ```julia using LinearAlgebra A = Float32[0.5165111 0.40158212 0.5574516 0.8424667 0.73727703 0.99013567 0.027817607 0.7097305 0.5340295 0.8029875; 0.73383516 0.21861029...

View on GitHub

nanosoldier commented on a commit on JuliaLang/julia
Executing the daily package evaluation, I will reply here when finished: @nanosoldier `runtests(isdaily = true)`

View on GitHub

umutky starred JuliaLang/julia
jishnub opened an issue on JuliaLang/julia
Test failure in `LinearAlgebra/lapack.jl` in comparing `LAPACK.sytri!` to `inv` for an almost-symmetric matrix
In the ` aarch64-apple-darwin` job https://buildkite.com/julialang/julia-master/builds/41270#0192a51c-3afb-4a6f-a53f-3c3b9f537ed4, there is ```julia The global RNG seed was 0xf3fab14bb37f52ec47cdcf...
IanButterworth opened a pull request on JuliaLang/julia
REPL: don't complete str and cmd macros when the input matches the internal name like `r_` to `r"`
Fixes https://github.com/JuliaLang/julia/issues/56071
IanButterworth created a comment on an issue on JuliaLang/julia
This seems to actually be specific to paths with the user dir as `~`. Fix: https://github.com/JuliaLang/julia/pull/56253

View on GitHub

IanButterworth opened a pull request on JuliaLang/julia
REPL: fix closing quote on completing files in a ~ path
Fixes https://github.com/JuliaLang/julia/issues/54958
aviatesk pushed 34 commits to avi/early-finalize-insertion JuliaLang/julia
  • add objects to concisely specify initialization PerProcess: once per process PerThread: once per thread id PerTask: ... 8a18f27
  • add precompile support for recording fields to change Somewhat generalizes our support for changing Ptr to C_NULL. N... a66733f
  • improve OncePer implementation Address reviewer feedback, add more fixes and more tests, rename to add Once prefix. dbbd4d9
  • fix use-after-free in test (detected in win32 CI) 9d56856
  • Add context to `errorshow` `except_str` tests (#56199) With this, the error message in https://buildkite.com/julial... c4effc3
  • Include default user depot when JULIA_DEPOT_PATH has leading empty entry (#56195) af51bcc
  • Add news entry for `matprod_dest` (#56160) This was missed out in https://github.com/JuliaLang/julia/pull/55537 4329422
  • Improve type inference of nonmissingtype, nonnothingtype and of Ryu (#56120) Co-authored-by: Cody Tapscott <84105208... d32cc26
  • Limit implicit `show` in REPL to printing 20 KiB by default (#53959) closes https://github.com/JuliaLang/julia/issue... 6b95ac0
  • Add inferFunctionAttrsPass to the pipeline so that libfuncs get attributes (#52946) I doubt this will make too much ... c2e3498
  • Fix printing of `AbstractDict`s with unknown length (#56009) Also fix interacting with them at the REPL. Fixes #5... afb65fa
  • module: Prepare `usings` array for world age partition (#55357) This is a relatively independent part of the binding... eb3ed5e
  • Add a convenience object for expressing once-like / per-runtime patterns (#55793) This adds 3 new types, to convenie... d36417b
  • [REPL] fix lock ordering mistake in load_pkg (#56215) Fixes #56206 1f935af
  • REPL: fix unsafe_write return type (#56220) Fixes: #56219 I am not really sure why we have a test for this, but w... 1cf3842
  • Fix triu/tril for partly initialized matrices (#55312) This fixes ```julia julia> using LinearAlgebra, StaticArray... f1990e2
  • Specialize adding/subtracting mixed Upper/LowerTriangular (#56149) Fixes https://github.com/JuliaLang/julia/issues/5... e33c6a8
  • juliac: remove call to jl_set_newly_inferred (#56222) Moved in #56186 6317e02
  • Fix `goto` insertion when dom-sorting IR in `slot2ssa` pass (#56189) Fix-up this pass a bit to correctly handle fall... a64ffa3
  • fix infinite recursion in `promote_type` for `Irrational` (#55870) Fixes #51001 ca3713e
  • and 14 more ...

View on GitHub

Rucellmai61 starred JuliaLang/julia
IanButterworth opened a pull request on JuliaLang/julia
REPL: fix brace detection when ' is used for transpose
Fixes https://github.com/JuliaLang/julia/issues/55856 Since https://github.com/JuliaLang/julia/pull/56041 it required pressing tab to hit the error, but this tries to fix the actual error.
iahmadgad starred JuliaLang/julia
IanButterworth created a comment on an issue on JuliaLang/julia
Just noting that to reproduce this you just need to type `copy(A').`, `A` doesn't need to exist. The issue I believe is that when searching for braces we're assuming `'` is only used to quote, not...

View on GitHub

Load more