Searched refs:nsec (Results 1 - 1 of 1) sorted by relevance

/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/
H A DNanoDuration.java52 public NanoDuration(long nsec) { argument
54 if(nsec >= NSEC_PER_MINUTE) {
55 duration = new Duration(nsec / ((long)NSEC_PER_MILLISECOND));
59 double ns = nsec;
71 numNanoSeconds = nsec; // not a double!
89 s = String.format(fmt, numNanoSeconds, "nsec");
91 s = String.format(fmt, 0.0, "nsec"); // unlikely!

Completed in 10 milliseconds