David Grieve
David Grieve
System.gc is going to be a GCCause of a full gc. Again, we'll need a log or fragment since there are a lot of possible variations.
@kcpeppe - I'm thinking we want to handle this is a consistent way across all collectors. We had the notion of using the diarizer to know whether the log didn't...
ZGC coverage is weak. We do need more/better tests for ZGC. We do have tests for this, but it is very light. Again, a log file would help.
@AlinaHovakimyan - Can you provide an example?
@AlinaHovakimyan - can you please submit a log segment for this issue?
@AlinaHovakimyan - Which collector are we talking about here? And can you submit a log fragment or whole log.
@AlinaHovakimyan - A gc log would be helpful here and elsewhere. We have few ZGC logs.
The current issue is keeping a static intializer with the variable it's initializing. For instance, this simple test case will fail. ``` @Test void staticInitializerStaysWithDeclaration() { rewriteRun( //language=java java( """...
The complicating factor here is that an event can span multiple, not necessarily contiguous, lines. I think a way to handle this would be to collect the line numbers and...
Another case: ``` String foo(String bar) { String _bar = bang(bar); // ... do something else with bar ... return _bar; } ``` In this case, I would expect no...