Ecosyste.ms: Timeline

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

JuliaLang/julia

topolarity created a comment on an issue on JuliaLang/julia
But that's also true for: ```julia julia> g(::Union{Int,Float64}) = 13 julia> hasmethod(g, Tuple{Int}) true ``` `Tuple{Int,Float32}` is a supertype of `Tuple{Int}` and isn't associated with any me...

View on GitHub

mkitti created a comment on a pull request on JuliaLang/julia
I was trying to test SSL under the scenario of Python loading Julia and OpenSSL.jl via `juliacall`. However, `juliacall` ends up loading the Python standard library `ssl` before I can load OpenS...

View on GitHub

leadacid starred JuliaLang/julia
fingolfin created a review on a pull request on JuliaLang/julia

View on GitHub

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

View on GitHub

mbauman created a review comment on a pull request on JuliaLang/julia
I mean, you can only determine "inside string" with a complete parser, I believe. I don't think we really need to fiddle with the regex with the `!hint` restriction that's now here. I had been ...

View on GitHub

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

View on GitHub

vtjnash created a branch on JuliaLang/julia

jn/parallel-require-loading - The Julia Programming Language

IanButterworth created a comment on a pull request on JuliaLang/julia
29s for me. m2 mac iTerm2

View on GitHub

mkitti created a comment on a pull request on JuliaLang/julia
Here's a fix for ScikitLearn.jl: ```julia using OpenSSL using ScikitLearn using NetworkOptions using PyCall if length(ARGS) > 0 && ARGS[1] == "--fix" py""" import ssl def c...

View on GitHub

IanButterworth created a review comment on a pull request on JuliaLang/julia
@Seelengrab just saw your comment in the issue, if you can help resolve this here

View on GitHub

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

View on GitHub

ericphanson created a comment on a pull request on JuliaLang/julia
BTW, it takes me 38-40s to print 1MiB with ```julia REPL.SHOW_MAXIMUM_BYTES = 1_048_576 struct A40735 str::String end str = string(('a':'z')...)^50 @time REPL.show_limited(stdout, MIME"t...

View on GitHub

IanButterworth created a review comment on a pull request on JuliaLang/julia
Yeah I think this needs fixing. How does the below proposal look? `(\w+\.|)\?\((.*)$` previous `^(?!\")(?:\w+\.|)\?\((.*)$` current `^\s*(?!\")(?:\w+\.|)\?\(\s*(.*)\s*$` proposed here ```juli...

View on GitHub

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

View on GitHub

d-netto created a review comment on a pull request on JuliaLang/julia
Agreed. I think that a short comment in the docstring explaining that this tool may be useful to diagnose lock contention, IO bottlenecks, etc, might be useful. But we should probably write a...

View on GitHub

d-netto created a review on a pull request on JuliaLang/julia

View on GitHub

topolarity created a comment on an issue on JuliaLang/julia
> that method cannot be called / does not exist for all supertypes of the input query What supertype can it not be called for?

View on GitHub

ericphanson created a comment on a pull request on JuliaLang/julia
> At the very least commands that are expected to produce large outputs (e.g. the various `@code` macros) need to be exempted. I'm not sure how you're hitting this, since `@code_warntype`, `@cod...

View on GitHub

gbaraldi opened a pull request on JuliaLang/julia
Fix trampoline warning on x86 as well
Fix https://github.com/JuliaLang/julia/pull/54634 on x86 as well.
gbaraldi pushed 1 commit to gb/trampoline JuliaLang/julia
  • Fix trampoline warning on x86 as well 63d4813

View on GitHub

d-netto created a review comment on a pull request on JuliaLang/julia
`sweep_mtarraylist_buffers` now runs while `bt_data_prof_lock` is held.

View on GitHub

d-netto created a review on a pull request on JuliaLang/julia

View on GitHub

d-netto pushed 2 commits to dcn-all-task-profiler JuliaLang/julia
  • inference: fix inference error from constructing invalid `TypeVar` (#56264) - fixes JuliaLang/julia#56248 08d11d0
  • all tasks profiler b5af2e6

View on GitHub

gbaraldi created a branch on JuliaLang/julia

gb/trampoline - The Julia Programming Language

vtjnash created a comment on an issue on JuliaLang/julia
``` julia> hasmethod(g, Tuple{Union{}, Union{}}) true ``` This result seems like bug: it probably should have returned false, since Julia may assume that the method list queries obeys subt...

View on GitHub

oscardssmith opened an issue on JuliaLang/julia
disallowing `Tuple{Union{}}` makes `hasmethod` less powerful.
In 1.9: it was possible to qurery the method table to see whether a given function has a 2 argument method: e.g. ``` julia> g(u::Float64,p) = u julia> hasmethod(g, Tuple{Int, Int}) false julia> ...
vocatart starred JuliaLang/julia
nsajko created a comment on a pull request on JuliaLang/julia
Is this backportable to v1.10, v1.11?

View on GitHub

mkitti created a comment on a pull request on JuliaLang/julia
On macOS: ``` % openssl version LibreSSL 3.3.6 % openssl version -d OPENSSLDIR: "/private/etc/ssl" ```

View on GitHub

Load more