GraalVM native image can compile java code into native code ahead to build faster, smaller, leaner applications.\nThe native image doesn't have a JIT compiler to compile bytecode into machine code, and doesn't support\nreflection unless configure reflecti... (more…)
Read more »
Line by Line coverage can be very tricky. Many companies rely on line coverage as metric signals however you can easily have waste with that... (more…)
Read more »
What’s javap, how to use it and when would you want to disassemble class files? (more…)
Read more »
MAJC (Microprocessor Architecture for Java Computing) was a Sun Microsystems multi-core, multithreaded, very long instruction word (VLIW) microprocessor design from the mid-to-late 1990s. Originally called the UltraJava processor, the MAJC processor was ... (more…)
Read more »
When it comes to code compilation and execution, not all programming languages follow the same approach. One of the common although not ideal ways to differentiate them is to split them into 2 groups compiled and interpreted languages. (more…)
Read more »