Artur Biesiadowski
Artur Biesiadowski
``` java public class Test { public void m(int arg) { arg = 5; System.out.println(arg); } } ``` generates ``` java class Test { def m( int arg){ arg=5 println(arg)...
``` java public class Test { public void m() { int x = 5; x+=1; } } ``` gets converted to ``` java class Test { def m(){ var x=5...
``` java public class Test { public String m() { return "\n"; } } ``` gets converted to ``` java class Test { def m(){ ' ' } } ```...
**Description**: Currently the test IntakeAndConsensusTests.nonAncientEventWithMissingParents() works only with generations. Since the move to birth rounds, this test should be adapted to work with both. **Related issue(s)**: Fixes #17993 **Checklist** -...
Add a switch to decide which sync to run in the program (old, negotiation based, or new, message based) Reuse as much as possible from current implementation as possible.
Create 4th protocol (MBP - MessageBasedProtocol) which can decode and dispatch RPC calls like described in #18756 , single message per interaction
After reconnect has finished, internal state in RPC sync might have been not cleared correctly on one side. ``` 2025-11-08 14:19:38.967 12458 INFO RECONNECT ReconnectController: A state was obtained from...
**Description**: Sync lag should be computed as median taking weights of nodes into account. This is to protect against the case, where many small-weight nodes can influence event creation on...