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

/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DTimeDuration.java102 long timeInSeconds = duration / 1000;
103 if (timeInSeconds <= 0) {
108 milliseconds = (duration - (timeInSeconds * 1000));
111 days = timeInSeconds / (3600 * 24);
112 timeInSeconds = timeInSeconds - (days * (3600 * 24));
113 hours = timeInSeconds / 3600;
114 timeInSeconds = timeInSeconds - (hours * 3600);
115 minutes = timeInSeconds / 6
[all...]
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DTimeDuration.java104 long timeInSeconds = duration / 1000;
105 if (timeInSeconds <= 0) {
110 milliseconds = (duration - (timeInSeconds * 1000));
113 days = timeInSeconds / (3600 * 24);
114 timeInSeconds = timeInSeconds - (days * (3600 * 24));
115 hours = timeInSeconds / 3600;
116 timeInSeconds = timeInSeconds - (hours * 3600);
117 minutes = timeInSeconds / 6
[all...]
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/ui/
H A DRefreshOptionsPanel.java191 long timeInSeconds = getInfo().getPoolingPeriod() / 1000;
192 period.setText(String.valueOf(timeInSeconds));
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DRefreshOptionsPanel.java190 long timeInSeconds = getInfo().getPoolingPeriod() / 1000;
191 period.setText(String.valueOf(timeInSeconds));
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/ui/
H A DRefreshOptionsPanel.java191 long timeInSeconds = getInfo().getPoolingPeriod() / 1000;
192 period.setText(String.valueOf(timeInSeconds));
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DRefreshOptionsPanel.java190 long timeInSeconds = getInfo().getPoolingPeriod() / 1000;
191 period.setText(String.valueOf(timeInSeconds));
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/ui/
H A DRefreshOptionsPanel.java191 long timeInSeconds = getInfo().getPoolingPeriod() / 1000;
192 period.setText(String.valueOf(timeInSeconds));
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/ui/
H A DRefreshOptionsPanel.java179 long timeInSeconds = getInfo().getPoolingPeriod() / 1000;
180 period.setText(String.valueOf(timeInSeconds));
/forgerock/openam-v13/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java110 private long timeInSeconds = 0; field in class:OATH
294 timeInSeconds = System.currentTimeMillis() / 1000L;
481 long currentTimeStep = (timeInSeconds / totpTimeStep) + (lastClockDriftInSeconds / totpTimeStep);
709 observedClockDrift = timeStep - (timeInSeconds / totpTimeStep);
/forgerock/openam/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DOATH.java112 private long timeInSeconds = 0; field in class:OATH
300 timeInSeconds = currentTimeMillis() / 1000L;
487 long currentTimeStep = (timeInSeconds / totpTimeStep) + (lastClockDriftInSeconds / totpTimeStep);
715 observedClockDrift = timeStep - (timeInSeconds / totpTimeStep);

Completed in 65 milliseconds