TechSY730

Results 42 comments of TechSY730

The `of` methods can be resolved by having the empty case return a "well known" empty instance of the kind the varargs one returns. Such as `ImmutableList.EMPTY` instead of `Lists.EMPTY`...

I've already done that in https://github.com/vigna/fastutil/pull/180 https://github.com/vigna/fastutil/pull/180/commits/27882c39c44ae46f4aad193a0cf6eaec55ceae34

Oops, I missed those. Forgot to check the shorter types' warnings. I'll fix those

List.of and Set.of are the most important. Iterators.asXIterator and its cousin Spliterators.asXSpliterator are still an issue. However, the performance loss only happens if three or more returns of different types...

Specifically, the problem is the method that takes an Object based iterator and wraps it as a Fastutil primitive iterator (same for spliterator) I should try to measure which of...

Not quite. There is still the case. > - The wrappers of Iterator/Spliterator in Iterators/Spliterators converting to primitive ones from object based ones (e.g. asIntIterator). But that is a pretty...

I like that idea better, but I wonder if `src/main/java` for handwritten code and `src/generated/java` for the generated code would be even more canonical

Can confirm, `ProtectSystem=strict` breaks ATLAS (LHC@home virtualbox) tasks. > `strict` prevents writing to anything not in boinc's home directory and not in `ReadWritePaths=` entries, except `/dev`, `/sys`, and `/proc` (as...

I noticed that VBoxXPCOMIPCD tries to open stuff in the directory `/tmp/.vbox-boinc-ipc`. So maybe that needs to be added to `ReadWritePaths=`? Also adding `Wants=virtualbox.service` may be a good idea. That...

@original-birdman How did you get the stderr of a task in boinc? I can't seem to find it in the project's folder