Jonas Konrad

Results 241 comments of Jonas Konrad

How exactly should compatibility for this work? If I change primitiveStack to implement reversiblePrimitiveIterable, should any new methods reversiblePrimitiveIterable introduces be default in primitiveStack or is it enough if I...

> I don't think we should do this at all. StackIterable only allows iteration from the top, which is the whole point of a stack IMO. Making StackIterable into a...

james doesn't work on micronaut full-time anymore. if you want to check for authentication, you can add your filter after the `SecurityFilter`, and check the `SecurityFilter.AUTHENTICATION` attribute. I don't think...

can these be static final fields? those have special optimizations in hotspot

@franz1981 it is buffered to a file here: https://github.com/Hyperfoil/Hyperfoil/blob/c9248866427814918ab11d6208b8ddadec468871/clustering/src/main/java/io/hyperfoil/clustering/ControllerServer.java#L1129-L1133 the code you linked happens a few steps downstream of that. the size of the byte array isnt really a problem,...

i think you need to evaluate the whole file at a time, but with config formats that's not too bad. probably will have to do it the same way as...

the junit integration in general is missing a bunch of features that make it unusable for some of our fuzz targets. e.g. setting the instrumented classes or the corpus. It...

it actually isn't possible to make this a generic filter because there's no api atm to know when a http request has been fully sent to the client (not just...

that seems sensible for the sync case. I think it is also worthwhile to add the doOnError you mention on our own, just like it's implemented for CompletableFuture.