Steven Whitaker

Results 10 issues of Steven Whitaker

I'm opening this issue based on a [question on discourse](https://discourse.julialang.org/t/compiler-complains-about-unexpected-end/83037). Consider the following code: ```julia if true x + end ``` This will result in (at least on Julia 1.7.0)...

error handling
parser

I'm opening this issue based on a [question on discourse](https://discourse.julialang.org/t/compiler-complains-about-unexpected-end/83037). Consider the following code: ```julia i = 0 for n = 1:5 i++ end ``` This will result in (at...

parser

I tried to create a MWE that was closer to the actual workflow I'm working with. I'm guessing the errors occurring here are related to #437 (one of the four...

bug

https://github.com/JuliaData/MemPool.jl/blob/8508088b32caff629ce6905cb263f78cdc068cd6/src/storage.jl#L963 The call to `reverse` above assumes `to_delete` is in ascending order, which isn't necessarily the case. I didn't thoroughly test, so I don't know what combinations of `to_mem` and...

bug
storage

I have the following setup: - Start Julia with `julia --project -t1 --heap-size-hint=3G` - Add 4 processes with `addprocs(4; exeflags = "--heap-size-hint=3G")` - Worker 1 receives a query request and...

bug

I would like to use DTables.jl where each `DTable` or `GDTable` exists on exactly one process and does not migrate (so, effectively using DTables.jl just for its out-of-core processing capabilities)....

The following demonstrates a parser ambiguity that I think should throw a `ParseError` similar to how `1.+1` throws an error: ```julia julia> x! = y -> y[1] = 1 #1...

syntax wat
syntax change
breaking

This issue has two parts. # Issue 1 The following NEWS entry is incorrect: > If no path is given after (i.e. `--project=@script`) then (like `--project=@.`) the directory and its...

### What happened? I ran the following code (almost exactly copy-pasted from different sections of the README): ```julia using SymbolicRegression, SymbolicUtils X = randn(2, 100) y = 2 * cos.(X[2,...

bug

In Julia 1.11.4 with OhMyREPL v0.5.29, I get the following error when trying to search (Ctrl-r) (note that I disabled Fzf searching via `OhMyREPL.enable_fzf(false)`): ```julia julia> ┌ Error: Error in...