<%@ page session="false" %> <%@ taglib uri="http://jakarta.apache.org/taglibs/benchmark" prefix="benchmark" %> <%-- -- -- Benchmark example application, number two. Author: Shawn Bayern -- -- NOTE: You might not want to run this page as-is, since it just -- pauses for a number of seconds, and you might think there's -- something wrong with your container. :-) -- --%> <%-- "output" example --%>

Duration with output=true:
This body will be displayed. Incidentally, it took approximately the following number of milliseconds to output us:


<%-- repeated "output" example --%>

Duration with output=true repeated 5 times with Thread.sleep(600ms):
This body will be displayed 5 times, which is more than enough, as far as I'm concerned. <% Thread.sleep(500); %>


<%-- "No output" example --%>

Duration with output=false with body content: This body is lost to the ages.