Michal Domagala
Michal Domagala
I know that is possible to add **.derived** file to workspace root. I use that feature extensively. However, when I create **NEW** workspace, I have to copy the file to...
Oh, system-level settings is one step further my dreams. For me Eclipse-level is enough. For example, eclipse optimizer plugin store his global configuration within $ECLIPSE_HOME/configuration/.settings/com.zeroturnaround.eclipse.optimizer.prefs
BTW, split has a bug: if stop watch is suspended and resumed, startTimeNanos is moved forward but stopTimeNanos not. For example: ``` watch.start() watch.split() watch.suspend() sleep(100ms) watch.resume() watch.getSplitTime() // -100...
@garydgregory, explanation how `StopWatch` works would be much more demanding task that implementing `lap()`! The problem is that current `StopWatch` is good model how physical device works, but bad class...
Could you provide example how to force websocat to send message in fragments? I tried to modify param `-B` and send very large message but I am not still not...
My experiment shows that small `-B` cause a few separated messages are sent, not one fragmented message: https://datatracker.ietf.org/doc/html/rfc6455 > A fragmented message consists of a single frame with the FIN...
I think best solution is delete `GatlingPlugin#shouldAddMavenCentral` completely because repository setup is not Gatling plugin responsibility
maven-surefire-plugin water party beer relax juice With configuration above I expect that when I launch testng from Eclipse then drink=`water`. That is actutal behavior, that is OK. Let say I...
That is wrong way to solve the case. Assume case that I have one execution extremely tuned for performance with disabled logging; log4j.configuration=off-log4j.properties. Assume that I have also system property...
1. About workaround: it works. 2. About complete solution: Build has 2 users, developers and CI, generally human and machine. Human loves rely on defaults, machine has no problem with...