Searched refs:seconds (Results 1 - 25 of 180) sorted by relevance

12345678

/openjdk9/hotspot/src/share/vm/opto/
H A Dphase.cpp51 tty->print_cr (" C2 Compile Time: %7.3f s", Phase::_t_totalCompilation.seconds());
52 tty->print_cr (" Parse: %7.3f s", timers[_t_parser].seconds());
55 tty->print_cr (" Optimize: %7.3f s", timers[_t_optimizer].seconds());
58 tty->print_cr (" Escape Analysis: %7.3f s", timers[_t_escapeAnalysis].seconds());
59 tty->print_cr (" Conn Graph: %7.3f s", timers[_t_connectionGraph].seconds());
60 tty->print_cr (" Macro Eliminate: %7.3f s", timers[_t_macroEliminate].seconds());
62 tty->print_cr (" GVN 1: %7.3f s", timers[_t_iterGVN].seconds());
65 tty->print_cr (" Incremental Inline: %7.3f s", timers[_t_incrInline].seconds());
66 tty->print_cr (" IdealLoop: %7.3f s", timers[_t_incrInline_ideal].seconds());
67 tty->print_cr (" IGVN: %7.3f s", timers[_t_incrInline_igvn].seconds());
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationDayTimeImpl.java61 BigDecimal seconds) {
63 super(isPositive, null, null, days, hours, minutes, seconds);
72 int seconds) {
79 (seconds != DatatypeConstants.FIELD_UNDEFINED ? new BigDecimal(String.valueOf(seconds)) : null));
167 float sec = (seconds==null)?0:seconds.floatValue();
178 seconds = seconds.subtract(BigDecimal.valueOf(60));
56 DurationDayTimeImpl( boolean isPositive, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) argument
67 DurationDayTimeImpl( boolean isPositive, int days, int hours, int minutes, int seconds) argument
H A DDurationImpl.java44 * minutes, and seconds) plus a sign (+/-) field.</p>
48 * and the seconds field has a non-negative decimal or null.
176 protected BigDecimal seconds; field in class:DurationImpl
202 && (seconds == null || seconds.signum() == 0)) {
227 * @param seconds of this <code>Duration</code>
231 * seconds parameters are all <code>null</code>. Or if any
241 BigDecimal seconds) {
248 this.seconds = seconds;
234 DurationImpl( boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) argument
316 DurationImpl( final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/javax/net/ssl/
H A DSSLSessionContext.java82 * If the timeout limit is set to 't' seconds, a session exceeds the
83 * timeout limit 't' seconds after its creation time.
90 * @param seconds the new session timeout limit in seconds; zero means
96 public void setSessionTimeout(int seconds) argument
103 * If the timeout limit is set to 't' seconds, a session exceeds the
104 * timeout limit 't' seconds after its creation time.
112 * @return the session timeout limit in seconds; zero means there is no
/openjdk9/hotspot/src/share/vm/services/
H A DruntimeService.hpp50 static double last_safepoint_time_sec() { return _safepoint_timer.seconds(); }
51 static double last_application_time_sec() { return _app_timer.seconds(); }
/openjdk9/jdk/src/java.base/share/classes/java/time/
H A DDuration.java97 * A time-based amount of time, such as '34.5 seconds'.
99 * This class models a quantity or amount of time in terms of seconds and nanoseconds.
107 * The duration uses nanosecond resolution with a maximum value of the seconds that can
111 * To achieve this, the class stores a {@code long} representing seconds and an {@code int}
115 * The duration is measured in "seconds", but these are not necessarily identical to
159 * The number of seconds in the duration.
161 private final long seconds; field in class:Duration
164 * number of seconds. This is always positive, and never exceeds 999,999,999.
172 * The seconds are calculated based on the standard definition of a day,
173 * where each day is 86400 seconds whic
223 ofSeconds(long seconds) argument
246 ofSeconds(long seconds, long nanoAdjustment) argument
513 create(long seconds, int nanoAdjustment) argument
526 Duration(long seconds, int nanos) argument
658 withSeconds(long seconds) argument
1034 create(BigDecimal seconds) argument
[all...]
H A DInstant.java104 * To achieve this, the class stores a {@code long} representing epoch-seconds and an
106 * The epoch-seconds are measured from the standard Java epoch of {@code 1970-01-01T00:00:00Z}
114 * This has traditionally been subdivided into 24 hours of 60 minutes of 60 seconds,
123 * As a result, the length of a solar day in 2012 is slightly longer than 86400 SI seconds.
130 * of a second from UT1 into whole seconds, known as <i>leap-seconds</i>.
132 * As such, UTC permits a day to have 86399 SI seconds or 86401 SI seconds where
135 * The modern UTC time-scale was introduced in 1972, introducing the concept of whole leap-seconds.
138 * to change the definition of UTC again, with the potential to remove leap seconds o
253 private final long seconds; field in class:Instant
406 create(long seconds, int nanoOfSecond) argument
[all...]
H A DZoneOffset.java109 * The fields of hours, minutes and seconds make assumptions that are valid for the
134 /** Cache of time-zone offset by offset in seconds. */
140 * The abs maximum seconds.
162 * The total offset in seconds.
211 final int hours, minutes, seconds;
218 seconds = 0;
223 seconds = 0;
228 seconds = 0;
233 seconds = parseNumber(offsetId, 5, false);
238 seconds
316 ofHoursMinutesSeconds(int hours, int minutes, int seconds) argument
362 validate(int hours, int minutes, int seconds) argument
399 totalSeconds(int hours, int minutes, int seconds) argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/util/calendar/
H A DCalendarDate.java76 private int seconds; field in class:CalendarDate
259 return seconds;
262 public CalendarDate setSeconds(int seconds) { argument
263 if (this.seconds != seconds) {
264 this.seconds = seconds;
272 seconds += n;
319 public CalendarDate setTimeOfDay(int hours, int minutes, int seconds, int millis) { argument
322 setSeconds(seconds);
327 addTimeOfDay(int hours, int minutes, int seconds, int millis) argument
[all...]
/openjdk9/hotspot/src/share/vm/compiler/
H A DabstractCompiler.hpp66 double seconds = _standard._time.seconds() + _osr._time.seconds(); local
67 return seconds == 0.0 ? 0 : (int) (bytes / seconds);
/openjdk9/hotspot/src/share/vm/runtime/
H A Dtimer.hpp45 double seconds() const;
65 // returns seconds since updated
67 double seconds() const;
H A DtimerTrace.cpp81 _print("%s, %3.7f secs", _title, _t.seconds());
83 tty->print_cr("[%s, %3.7f secs]", _title, _t.seconds());
/openjdk9/jdk/src/java.sql/share/classes/javax/sql/
H A DCommonDataSource.java85 * <p>Sets the maximum time in seconds that this data source will wait
92 * @param seconds the data source login time limit
96 void setLoginTimeout(int seconds) throws SQLException; argument
99 * Gets the maximum time in seconds that this data source can wait
H A DXADataSource.java103 void setLoginTimeout(int seconds) throws SQLException; argument
H A DDataSource.java131 void setLoginTimeout(int seconds) throws SQLException; argument
H A DConnectionPoolDataSource.java94 void setLoginTimeout(int seconds) throws SQLException; argument
/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_Compilation.cpp631 tty->print_cr(" C1 Compile Time: %7.3f s", timers[_t_compile].seconds());
632 tty->print_cr(" Setup time: %7.3f s", timers[_t_setup].seconds());
635 tty->print_cr(" Build HIR: %7.3f s", timers[_t_buildIR].seconds());
636 tty->print_cr(" Parse: %7.3f s", timers[_t_hir_parse].seconds());
637 tty->print_cr(" Optimize blocks: %7.3f s", timers[_t_optimize_blocks].seconds());
638 tty->print_cr(" GVN: %7.3f s", timers[_t_gvn].seconds());
639 tty->print_cr(" Null checks elim: %7.3f s", timers[_t_optimize_null_checks].seconds());
640 tty->print_cr(" Range checks elim: %7.3f s", timers[_t_rangeCheckElimination].seconds());
642 double other = timers[_t_buildIR].seconds() -
643 (timers[_t_hir_parse].seconds()
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/javax/xml/datatype/
H A DDatatypeFactory.java285 * specifying the {@code Duration} as isPositive, years, months, days, hours, minutes, seconds.
301 * @param seconds of this {@code Duration}
317 final BigDecimal seconds);
321 * specifying the {@code Duration} as isPositive, years, months, days, hours, minutes, seconds.
332 * @param seconds of this {@code Duration}
346 * BigDecimal seconds)
355 final int seconds) {
372 // seconds may not be set
373 BigDecimal realSeconds = (seconds != DatatypeConstants.FIELD_UNDEFINED) ? BigDecimal.valueOf((long) seconds)
310 newDuration( final boolean isPositive, final BigInteger years, final BigInteger months, final BigInteger days, final BigInteger hours, final BigInteger minutes, final BigDecimal seconds) argument
348 newDuration( final boolean isPositive, final int years, final int months, final int days, final int hours, final int minutes, final int seconds) argument
995 newXMLGregorianCalendarTime( final int hours, final int minutes, final int seconds, final int timezone) argument
1033 newXMLGregorianCalendarTime( final int hours, final int minutes, final int seconds, final BigDecimal fractionalSecond, final int timezone) argument
1071 newXMLGregorianCalendarTime( final int hours, final int minutes, final int seconds, final int milliseconds, final int timezone) argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DSSLSessionContextImpl.java45 private int timeout; // timeout in seconds
93 public void setSessionTimeout(int seconds) argument
95 if (seconds < 0) {
99 if (timeout != seconds) {
100 sessionCache.setTimeout(seconds);
101 sessionHostPortCache.setTimeout(seconds);
102 timeout = seconds;
/openjdk9/jaxp/test/javax/xml/jaxp/module/ServiceProviderTest/src/DefaultFactoryWrapperTest/xmlwrapperprovider/xwp/
H A DDatatypeFactoryWrapper.java49 BigInteger hours, BigInteger minutes, BigDecimal seconds) {
50 return defaultImpl.newDuration(isPositive, years, months, days, hours, minutes, seconds);
48 newDuration(boolean isPositive, BigInteger years, BigInteger months, BigInteger days, BigInteger hours, BigInteger minutes, BigDecimal seconds) argument
/openjdk9/jdk/test/java/util/Date/
H A DDateGregorianCalendarTest.java162 for (long seconds = Integer.MIN_VALUE;
163 runrun && seconds <= Integer.MAX_VALUE; seconds += delta) {
164 checkTimes(gc, 1970, JANUARY, 1, 0, 0, seconds);
204 long hourOfDay, long minutes, long seconds) {
206 gc.set((int)year, (int)month, (int)dayOfMonth, (int)hourOfDay, (int)minutes, (int)seconds);
209 (int)hourOfDay, (int)minutes, (int)seconds);
214 +"\nhourOfDay="+hourOfDay+", minutes="+minutes+", seconds="+seconds
203 checkTimes(GregorianCalendar gc, long year, long month, long dayOfMonth, long hourOfDay, long minutes, long seconds) argument
H A DBug4955000.java124 int seconds = ss[p];
127 hours, minutes, seconds);
130 gc.set(year + 1900, month, date, hours, minutes, seconds);
/openjdk9/hotspot/src/share/vm/utilities/
H A Dticks.hpp107 static double seconds(const Tickspan& span);
/openjdk9/jdk/src/java.sql/share/classes/javax/transaction/xa/
H A DXAResource.java130 * @return the transaction timeout value in seconds.
214 * @param seconds The transaction timeout value in seconds.
222 boolean setTransactionTimeout(int seconds) throws XAException; argument
/openjdk9/jdk/test/sun/net/InetAddress/nameservice/simple/
H A DDefaultCaching.java94 static void sleep (int seconds) { argument
96 Thread.sleep (seconds * 1000);

Completed in 450 milliseconds

12345678