Fredrik Ekre

Results 126 issues of Fredrik Ekre

If you only have one parameter it is optional to use curly braces. Source: ```julia function foo(x::T) where T end ``` Playground: ``` function_definition [0, 0] - [1, 3] name:...

Source: ```julia let end ``` Playground: ``` let_statement [0, 0] - [2, 0] variable_declaration [1, 0] - [1, 3] identifier [1, 0] - [1, 3] ```

Source: ```julia begin end ``` Playground: ``` ERROR [0, 0] - [2, 0] identifier [1, 0] - [1, 3] ```

Source: ```julia function foo(::Int) end ``` Playground: ``` function_definition [0, 0] - [1, 3] name: identifier [0, 9] - [0, 12] parameters: parameter_list [0, 12] - [0, 19] ERROR [0,...

Source: ```julia struct Foo bar::Int #= const =# ibaz::Int end ``` Playground: ``` struct_definition [0, 0] - [3, 3] name: identifier [0, 7] - [0, 10] typed_expression [1, 4] -...

bug

``` $ for region in eu-central us-east1 us-east2 us-west; do > curl -fsSL https://${region}.pkg.julialang.org/package/12aac903-9f7c-5d81-afc2-d9565ea332ae/83aa52e9121f1cf30e7dd170b66889f9d37ecf61 | sha256sum > done 89e49debfc51ef09f27cf69ac7c2d927b98667f964db254e0dbe6c290aec2a1b - a373504da76c1a87631d96b466c49c150c774efe10954daf9fa15055d42fb59c - a373504da76c1a87631d96b466c49c150c774efe10954daf9fa15055d42fb59c - a373504da76c1a87631d96b466c49c150c774efe10954daf9fa15055d42fb59c - ``` Relevant log extract:...

Storage servers should share a timestamp of the current registry hash. One idea is to use the `Last-Modified` header for `/registries` but if that endpoint advertises multiple resources this does...

NGINX `$bytes_received` includes header bytes as well, I think (http://nginx.org/en/docs/stream/ngx_stream_core_module.html#var_bytes_received) so perhaps this should be called `$body_bytes_receieved`? Or perhaps this should be updated to also count header bytes. (NGINX doesn't...

e.g. ```julia import Compat: replace, popfirst!, @error, @info, occursin ```