Lines Matching defs:seconds
59 * 24 × 60 × 60 = 86400 seconds
64 * year 1995 was 61 seconds long, thanks to an added leap second.
77 * seconds are introduced as needed into UTC so as to keep UTC within
78 * 0.9 seconds of UT1, which is a version of UT with certain
82 * <i>not</i> adjusted for leap seconds. An interesting source of
95 * year, month, date, hours, minutes, and seconds values, the
109 * 61 occur only for leap seconds and even then only in Java
110 * implementations that actually track leap seconds correctly. Because
111 * of the manner in which leap seconds are currently introduced, it is
112 * extremely unlikely that two leap seconds will occur in the same
233 * @param sec the seconds between 0-59.
304 * @param sec the seconds between 0-59.
843 * Returns the number of seconds past the minute represented by this date.
846 * Java Virtual Machines that take leap seconds into account.
848 * @return the number of seconds past the minute represented by this date.
859 * Sets the seconds of this <tt>Date</tt> to the specified value.
865 * @param seconds the seconds value.
868 * replaced by <code>Calendar.set(Calendar.SECOND, int seconds)</code>.
871 public void setSeconds(int seconds) {
872 getCalendarDate().setSeconds(seconds);