Searched refs:time (Results 1 - 25 of 499) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DStatistics.java131 * Update the read request time count
133 * @param time The time in ms of the last read request
135 public void updateReadTime(long time) { argument
136 if (time > 0 && time < readTimeMin) {
137 readTimeMin = time;
140 if (time > readTimeMax) {
141 readTimeMax = time;
144 readCumulativeCount += time;
197 updateWriteTime(long time) argument
259 updateDeleteTime(long time) argument
321 updateReadRecordCountTime(long time) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/ldap/
H A DStatistics.java131 * Update the read request time count
133 * @param time The time in ms of the last read request
135 public void updateReadTime(long time) { argument
136 if (time > 0 && time < readTimeMin) {
137 readTimeMin = time;
140 if (time > readTimeMax) {
141 readTimeMax = time;
144 readCumulativeCount += time;
197 updateWriteTime(long time) argument
259 updateDeleteTime(long time) argument
321 updateReadRecordCountTime(long time) argument
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheObject.java39 protected long time = 0; field in class:CacheObject
47 time = System.currentTimeMillis();
51 return time;
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DCacheObject.java42 protected long time = 0; field in class:CacheObject
50 time = currentTimeMillis();
54 return time;
/forgerock/openam-v13/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/events/
H A DRadiusEvent.java18 import org.joda.time.DateTime;
19 import org.joda.time.format.DateTimeFormatter;
20 import org.joda.time.format.ISODateTimeFormat;
28 * The time at which the event occurred.
49 * Get the time at which the event occurred in ISO format.
51 * @return a String containing an ISO date format representation of the time at which the event occurred.
/forgerock/openam/openam-radius/openam-radius-server/src/main/java/org/forgerock/openam/radius/server/events/
H A DRadiusEvent.java18 import org.joda.time.DateTime;
19 import org.joda.time.format.DateTimeFormatter;
20 import org.joda.time.format.ISODateTimeFormat;
28 * The time at which the event occurred.
49 * Get the time at which the event occurred in ISO format.
51 * @return a String containing an ISO date format representation of the time at which the event occurred.
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTriggerable.java45 * @param time The time the HeadTaskRunnable scheduled
48 public void trigger(Date time); argument
H A DHeadTaskRunnable.java45 protected Date time; field in class:HeadTaskRunnable
61 * @param time The time this TaskRunnable is scheduled
65 Date time) throws IllegalArgumentException {
66 if ((time == null) || (nextTask == null)) {
69 this.time = time;
249 parent.trigger(time);
307 parent.trigger(time);
353 * Returns the time whic
64 HeadTaskRunnable(Triggerable parent, TaskRunnable nextTask, Date time) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTriggerable.java45 * @param time The time the HeadTaskRunnable scheduled
48 public void trigger(Date time); argument
H A DHeadTaskRunnable.java45 protected Date time; field in class:HeadTaskRunnable
61 * @param time The time this TaskRunnable is scheduled
65 Date time) throws IllegalArgumentException {
66 if ((time == null) || (nextTask == null)) {
69 this.time = time;
249 parent.trigger(time);
307 parent.trigger(time);
353 * Returns the time whic
64 HeadTaskRunnable(Triggerable parent, TaskRunnable nextTask, Date time) argument
[all...]
/forgerock/openam-v13/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DTOTPAlgorithm.java67 * @param time a value that reflects a time
74 String time,
76 return generateTOTP(key, time, returnDigits, "HmacSHA1");
85 * @param time a value that reflects a time
92 String time,
94 return generateTOTP(key, time, returnDigits, "HmacSHA256");
102 * @param time a value that reflects a time
73 generateTOTP(byte[] key, String time, String returnDigits) argument
91 generateTOTP256(byte[] key, String time, String returnDigits) argument
108 generateTOTP512(byte[] key, String time, String returnDigits) argument
127 generateTOTP(byte[] key, String time, String returnDigits, String crypto) argument
[all...]
/forgerock/openam/openam-authentication/openam-auth-oath/src/main/java/org/forgerock/openam/authentication/modules/oath/
H A DTOTPAlgorithm.java67 * @param time a value that reflects a time
74 String time,
76 return generateTOTP(key, time, returnDigits, "HmacSHA1");
85 * @param time a value that reflects a time
92 String time,
94 return generateTOTP(key, time, returnDigits, "HmacSHA256");
102 * @param time a value that reflects a time
73 generateTOTP(byte[] key, String time, String returnDigits) argument
91 generateTOTP256(byte[] key, String time, String returnDigits) argument
108 generateTOTP512(byte[] key, String time, String returnDigits) argument
127 generateTOTP(byte[] key, String time, String returnDigits, String crypto) argument
[all...]
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAOathCode.h20 #include <sys/time.h>
23 #import <sys/time.h>
H A DFRANotificationTableViewCell.h35 * The UILabel in which the notification time will be displayed.
37 @property (weak, nonatomic) IBOutlet UILabel *time; variable
/forgerock/openam/openam-notifications-integration/src/test/java/org/forgerock/openam/notifications/brokers/
H A DMockTimeService.java19 import org.forgerock.util.time.TimeService;
22 * Mock time service.
29 * Fixed time value in milliseconds.
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DTOTPAlgorithm.java86 * @param time a value that reflects a time
93 String time,
95 return generateTOTP(key, time, returnDigits, "HmacSHA1");
104 * @param time a value that reflects a time
111 String time,
113 return generateTOTP(key, time, returnDigits, "HmacSHA256");
121 * @param time a value that reflects a time
92 generateTOTP(String key, String time, String returnDigits) argument
110 generateTOTP256(String key, String time, String returnDigits) argument
127 generateTOTP512(String key, String time, String returnDigits) argument
146 generateTOTP(String key, String time, String returnDigits, String crypto) argument
[all...]
/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DTOTPAlgorithm.java86 * @param time a value that reflects a time
93 String time,
95 return generateTOTP(key, time, returnDigits, "HmacSHA1");
104 * @param time a value that reflects a time
111 String time,
113 return generateTOTP(key, time, returnDigits, "HmacSHA256");
121 * @param time a value that reflects a time
92 generateTOTP(String key, String time, String returnDigits) argument
110 generateTOTP256(String key, String time, String returnDigits) argument
127 generateTOTP512(String key, String time, String returnDigits) argument
146 generateTOTP(String key, String time, String returnDigits, String crypto) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/util/
H A DTestTimer.java82 * @param time
85 * the time unit for the duration
88 public Builder maxSleep(long time, TimeUnit unit) argument
90 Reject.ifFalse(time > 0, "time must be positive");
91 this.maxSleepTimeInMillis = unit.toMillis(time);
98 * @param time
101 * the time unit for the duration
104 public Builder sleepTimes(long time, TimeUnit unit) argument
106 Reject.ifFalse(time >
[all...]
/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/util/
H A DDateUtil.java21 import org.joda.time.Chronology;
22 import org.joda.time.DateTime;
23 import org.joda.time.DateTimeZone;
24 import org.joda.time.chrono.ISOChronology;
25 import org.joda.time.format.DateTimeFormatter;
26 import org.joda.time.format.ISODateTimeFormat;
105 * Generate a formatted timestamp for the current time.
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DSessionEvent.java62 /** Session idle time out event */
65 /** Session maximum time out event */
86 public SessionEvent(Session sess, int type, long time) { argument
89 eventTime = time;
118 * Gets the time of this event.
120 * @return The event time as UTC milliseconds from the epoch
/forgerock/openam-v13/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DExecutorServiceConfigurator.java87 * Sets the time limit for which threads may remain idle before being terminated.
89 * @param time the time to wait. A time value of zero will cause excess threads
91 * @param unit the time unit of the {@code time} argument
94 public void setKeepAliveTime(long time, TimeUnit unit) { argument
95 delegate.setKeepAliveTime(time, unit);
99 * Returns the thread keep-alive time.
101 * @param unit the desired time uni
[all...]
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DExecutorServiceConfigurator.java87 * Sets the time limit for which threads may remain idle before being terminated.
89 * @param time the time to wait. A time value of zero will cause excess threads
91 * @param unit the time unit of the {@code time} argument
94 public void setKeepAliveTime(long time, TimeUnit unit) { argument
95 delegate.setKeepAliveTime(time, unit);
99 * Returns the thread keep-alive time.
101 * @param unit the desired time uni
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/replication/common/
H A DChangeNumberTest.java51 long time = 0x12ABC;
54 {time, 123, 45, "0000000000012abc002d0000007b"},
55 {time, 123456789, 32767, "0000000000012abc7fff075bcd15"},
56 {time, 123456789, 32768, "0000000000012abc8000075bcd15"},
57 {time, 123456789, 65000, "0000000000012abcfde8075bcd15"},
58 {time, 123, 45678, "0000000000012abcb26e0000007b"}
66 public void CreateChangeNumber(long time, int seq, int id, String str) argument
69 ChangeNumber cn = new ChangeNumber(time,seq,id);
72 new ChangeNumber(time,seq,id);
73 new ChangeNumber(time
82 ChangeNumberEncodeDecode(long time, int seq, int id, String str) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/replication/common/
H A DCSNTest.java53 long time = 0x12ABC;
56 {time, 123, 45, "0000000000012abc002d0000007b"},
57 {time, 123456789, 32767, "0000000000012abc7fff075bcd15"},
58 {time, 123456789, 32768, "0000000000012abc8000075bcd15"},
59 {time, 123456789, 65000, "0000000000012abcfde8075bcd15"},
60 {time, 123, 45678, "0000000000012abcb26e0000007b"}
66 public void createCSN(long time, int seq, int id, String str) throws Exception argument
68 CSN csn = new CSN(time, seq, id);
71 new CSN(time, seq, id);
72 new CSN(time
81 csnEncodeDecode(long time, int seq, int id, String str) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/replication/common/
H A DChangeNumberTest.java51 long time = 0x12ABC;
54 {time, 123, 45, "0000000000012abc002d0000007b"},
55 {time, 123456789, 32767, "0000000000012abc7fff075bcd15"},
56 {time, 123456789, 32768, "0000000000012abc8000075bcd15"},
57 {time, 123456789, 65000, "0000000000012abcfde8075bcd15"},
58 {time, 123, 45678, "0000000000012abcb26e0000007b"}
66 public void CreateChangeNumber(long time, int seq, int id, String str) argument
69 ChangeNumber cn = new ChangeNumber(time,seq,id);
72 new ChangeNumber(time,seq,id);
73 new ChangeNumber(time
82 ChangeNumberEncodeDecode(long time, int seq, int id, String str) argument
[all...]

Completed in 194 milliseconds

1234567891011>>