Package org.openjdk.jmh.results.format

Examples of org.openjdk.jmh.results.format.ResultFormat.writeOut()


            final long ellapsed = System.nanoTime() - startNanos;
            STDOUT.println("Done. Benchmark time: " + TimeUnit.NANOSECONDS.toSeconds(ellapsed) + "s");
            STDOUT.println();
            STDOUT.println("Benchmark results:");
            resultFormat.writeOut(results);
            pw.flush();
        }
        catch (ParameterException e) {
            STDOUT.println(e.getMessage());
            STDOUT.println();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.