Afficher les derniers auteurs
author | version | line-number | content |
---|---|---|---|
1 | {{{ | ||
2 | {{groovy}} | ||
3 | def t = new java.text.DecimalFormat("000,000,000,000"); | ||
4 | def rt = Runtime.getRuntime(); | ||
5 | println("- free memory " + t.format(rt.freeMemory())) | ||
6 | println("- max memory " + t.format(rt.maxMemory())) | ||
7 | println("- total memory " + t.format(rt.totalMemory())) | ||
8 | {{/groovy}} | ||
9 | }}} |