Hugues
Hugues
On my laptop, the network module is correctly showing my wifi or ethernet connection when only a single one of the two is on. If both are on it seems...
The following code ``` import com.koloboke.compile.KolobokeMap; @KolobokeMap public abstract class IntMap { public static IntMap withExpectedSize(int size) { return new KolobokeIntMap(size); } public abstract T put(int k, T v); public...
It is possible for the cause of a suppressed exception to be the exception it is attached to. Gracefully handle that case by unsetting the cause to break and avoid...
`bernhard==0.2.6` and `riemann-client==6.5.0` are incompatible under python 3.7 when the `protobuf` package is using the C++ implementation (as opposed to pure python). This is easily reproduced: ``` # python3 Python...
Change the behavior of `slipcover --merge` as follows: - human-readable output of the merged result is printed to stdout, unless `--silent` is passed - in json output mode, honor the...
I would like an easy way to pretty print for human consumption the contents of merged json coverage files. Possible solutions that would be satisfying for my use case: -...
I'm doing some graph manipulation, with the graph being represented by adjacency list, where each vertex is an integer. Using BitSet as a replacement for `HashSet` is making things considerably...
### Description I need a colima machine to have its own IP so I can reach exposed ports from the host. I am using `--network-address` for that. I want to...