Rafael Winterhalter
Rafael Winterhalter
For my use case, a group is "orphaned" when its no longer read from or written to, but a TTL per message would have the same effect, so I'd be...
As a matter of fact, I have written a small [thread-local-ish utility](https://github.com/raphw/weak-lock-free) for this exact purpose. The problem with thread locals is that it only allows access from within a...
Hi, I think this is an implementation detail of Mockito and has nothing to do with Byte Buddy. The problem occures in the `Times` class: ``` java public void verify(VerificationData...
As a user, you do not normally have control over the state of your/the build server's local repository. A build server might share some mounted folder with many nodes to...
As for the overhead: I use a Maven extension today that does the same thing - that is evaluating the sha256 of each file - and it causes an overhead...
To simplify the replication of the problem, I added a reproduction in [sample.zip](https://github.com/oracle/graal/files/7456681/sample.zip). Running *native-image -cp bb.jar:. Sample* yields > Error: Error parsing reflection configuration in file:/home/rafael/foo/META-INF/native-image/reflect-config.json: > Could not...
There shoukd be both, a bridge method with the erasure and another method with the substituted type. Did you iterate over the declared methods?
But you are not overwriting the method, are you? In this case, the reflection API will pick up the super method. Note that the reflection API is not aware of...
You can override the method and simply call the super method (`SuperMethodCall.INSTANCE`), then it should declare it.
Could you elaborate on "not working"? How do you install the agent?