Examples of warmuptime()


Examples of org.apache.sling.performance.annotation.PerformanceTest.warmuptime()

    PerformanceTest performanceAnnotation = testMethodToInvoke
        .getAnnotation(PerformanceTest.class);

    // retrieve the test configuration options
    int warmuptime = performanceAnnotation.warmuptime();
    int runtime = performanceAnnotation.runtime();
    int warmupinvocations = performanceAnnotation.warmupinvocations();
    int runinvocations = performanceAnnotation.runinvocations();

    DescriptiveStatistics statistics = new DescriptiveStatistics();
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.