Searched refs:delay (Results 1 - 25 of 84) sorted by relevance

1234

/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/sessions/
H A DSessionValidator.js23 var delay, ONE_SECOND_IN_MILLISECONDS = 1000, SESSION_ALMOST_EXPIRED_BACKOFF_SECONDS = 1;
26 clearTimeout(delay);
28 delay = null;
32 delay = setTimeout(function () {
57 if (delay) { throw new Error("Validator has already been started"); }
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/sessions/
H A DSessionValidator.js24 let delay;
29 clearTimeout(delay);
31 delay = null;
35 delay = setTimeout(function () {
63 if (delay) { throw new Error("Validator has already been started"); }
/forgerock/openam-v13/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingScheduledExecutorService.java47 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { argument
48 return ((ScheduledExecutorService) delegate).schedule(wrap(command), delay, unit);
55 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { argument
56 return ((ScheduledExecutorService) delegate).schedule(wrap(callable), delay, unit);
71 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
72 return ((ScheduledExecutorService) delegate).scheduleWithFixedDelay(wrap(command), initialDelay, delay, unit);
/forgerock/openam/openam-audit/openam-audit-context/src/main/java/org/forgerock/openam/audit/context/
H A DAuditRequestContextPropagatingScheduledExecutorService.java47 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { argument
48 return ((ScheduledExecutorService) delegate).schedule(wrap(command), delay, unit);
55 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { argument
56 return ((ScheduledExecutorService) delegate).schedule(wrap(callable), delay, unit);
71 public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) { argument
72 return ((ScheduledExecutorService) delegate).scheduleWithFixedDelay(wrap(command), initialDelay, delay, unit);
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java160 long delay = nextRun.getTime() - now;
161 scheduler.setDelay((delay >= 0 ? delay : 0));
269 long delay = time.getTime() -
271 scheduler.setWait(((delay < 0) ? 0 : delay));
300 * @param delay The time (in ms) to wait before running the task
303 public void schedule(TaskRunnable task, long delay) throws argument
305 schedule(task, new Date(System.currentTimeMillis() + delay));
571 private long delay; field in class:TimerPool.Scheduler
594 setWait(long delay) argument
606 setDelay(long delay) argument
[all...]
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DTimerPool.java160 long delay = nextRun.getTime() - now;
161 scheduler.setDelay((delay >= 0 ? delay : 0));
269 long delay = time.getTime() -
271 scheduler.setWait(((delay < 0) ? 0 : delay));
300 * @param delay The time (in ms) to wait before running the task
303 public void schedule(TaskRunnable task, long delay) throws argument
305 schedule(task, new Date(currentTimeMillis() + delay));
571 private long delay; field in class:TimerPool.Scheduler
594 setWait(long delay) argument
606 setDelay(long delay) argument
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/plugins/
H A DDelayPreOpPlugin.java63 * The OID for the delay request control, which is used to flag operations
90 long delay = reader.readInteger();
92 return new DelayRequestControl(isCritical, delay);
122 * @param delayDuration The requested delay duration.
145 * Retrieves the delay duration.
147 * @return The delay duration.
196 " for delay pre-op plugin."));
308 * Looks for a delay request control in the operation, and if one is found
330 Message.raw("Unable to decode the delay request control: " +
361 * Creates a delay reques
367 createDelayControl(long delay) argument
382 createDelayControlList(long delay) argument
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/plugins/
H A DDelayPreOpPlugin.java62 * The OID for the delay request control, which is used to flag operations
90 long delay = reader.readInteger();
92 return new DelayRequestControl(isCritical, delay);
125 * The requested delay duration.
148 * Retrieves the delay duration.
150 * @return The delay duration.
199 " for delay pre-op plugin."));
311 * Looks for a delay request control in the operation, and if one is found
333 Message.raw("Unable to decode the delay request control: " +
364 * Creates a delay reques
370 createDelayControl(long delay) argument
385 createDelayControlList(long delay) argument
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/plugins/
H A DDelayPreOpPlugin.java63 * The OID for the delay request control, which is used to flag operations
90 long delay = reader.readInteger();
92 return new DelayRequestControl(isCritical, delay);
122 * @param delayDuration The requested delay duration.
145 * Retrieves the delay duration.
147 * @return The delay duration.
196 " for delay pre-op plugin."));
308 * Looks for a delay request control in the operation, and if one is found
330 Message.raw("Unable to decode the delay request control: " +
361 * Creates a delay reques
367 createDelayControl(long delay) argument
382 createDelayControlList(long delay) argument
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/plugins/
H A DDelayPreOpPlugin.java62 * The OID for the delay request control, which is used to flag operations
90 long delay = reader.readInteger();
92 return new DelayRequestControl(isCritical, delay);
125 * The requested delay duration.
148 * Retrieves the delay duration.
150 * @return The delay duration.
199 " for delay pre-op plugin."));
311 * Looks for a delay request control in the operation, and if one is found
333 Message.raw("Unable to decode the delay request control: " +
364 * Creates a delay reques
370 createDelayControl(long delay) argument
385 createDelayControlList(long delay) argument
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/plugins/
H A DDelayPreOpPlugin.java63 * The OID for the delay request control, which is used to flag operations
90 long delay = reader.readInteger();
92 return new DelayRequestControl(isCritical, delay);
122 * @param delayDuration The requested delay duration.
145 * Retrieves the delay duration.
147 * @return The delay duration.
196 " for delay pre-op plugin."));
308 * Looks for a delay request control in the operation, and if one is found
330 Message.raw("Unable to decode the delay request control: " +
361 * Creates a delay reques
367 createDelayControl(long delay) argument
382 createDelayControlList(long delay) argument
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/test/qunit/managedobjects/
H A DmanagedObjectsTest.js65 _.delay(function () {
69 _.delay(function () {
77 _.delay(function () {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/delegates/
H A DReconDelegate.js58 _.delay(checkCompleted, 1000);
64 _.delay(checkCompleted, 1000);
79 _.delay(checkCompleted, 1000);
88 _.delay(checkCompleted, 100);
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/settings/update/
H A DInstallView.js151 _.delay(_.bind(function () {
189 _.delay(_.bind(function () {
198 _.delay(_.bind(function () {
222 // This delay is to given a moment to take in the status
223 _.delay(_.bind(function() {
235 // This delay is to given a moment to take in the completion status
236 _.delay(_.bind(function() {
H A DInstallationReportView.js71 // The delay is to ensure that the spinner is rendered before any resource heavy rendering
73 _.delay(_.bind(function() {
115 // The delay is to ensure that the spinner is rendered before any resource heavy rendering
117 _.delay(_.bind(function() {
133 // The delay is to ensure that the spinner is rendered before any resource heavy rendering
135 _.delay(_.bind(function() {
H A DMaintenanceModeView.js88 _.delay(_.bind(function() {
121 _.delay(_.bind(function () {
142 _.delay(_.bind(function() {
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/utils/form/
H A DbindSavePromiseToElement.js59 _.delay(() => {
/forgerock/opendj-v3/opendj-server-legacy/src/test/java/org/opends/server/plugins/
H A DDelayPreOpPlugin.java65 * The OID for the delay request control, which is used to flag operations
91 long delay = reader.readInteger();
93 return new DelayRequestControl(isCritical, delay);
126 * The requested delay duration.
149 * Retrieves the delay duration.
151 * @return The delay duration.
198 " for delay pre-op plugin."));
294 * Looks for a delay request control in the operation, and if one is found
316 LocalizableMessage.raw("Unable to decode the delay request control: " +
347 * Creates a delay reques
353 createDelayControl(long delay) argument
368 createDelayControlList(long delay) argument
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/concurrency/
H A DThreadMonitor.java132 * @param delay Start delay in the given TimeUnits.
133 * @param duration Fixed delay in the given TimeUnits.
134 * @param timeUnit TimeUnit for both delay and duration.
138 final long delay,
144 return scheduledService.scheduleAtFixedRate(runnable, delay, duration, timeUnit);
152 delay,
136 watchScheduledThread(final ScheduledExecutorService scheduledService, final Runnable runnable, final long delay, final long duration, final TimeUnit timeUnit) argument
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/concurrency/
H A DThreadMonitor.java54 * amounts of time between each retry. This amount of time will be called the recovery delay.
56 * The recovery delay is computed by multiplying the previous delay by two until it reaches the max recovery delay.
58 * As the purpose of the thread is still to be running all the time, the max recovery delay will be short:
124 * @param maxRecoveryDelayInMS Max recovery delay in ms
125 * @param recoveryDelayDeltaInMS Recovery delay delta in ms
174 * @param delay Start delay in the given TimeUnits.
175 * @param duration Fixed delay i
178 watchScheduledThread(final ScheduledExecutorService scheduledService, final Runnable runnable, final long delay, final long duration, final TimeUnit timeUnit) argument
[all...]
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/connector/oauth/
H A DAbstractOAuthView.js56 _.delay(function () {
H A DGoogleTypeView.js64 _.delay(function () {
/forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/test/qunit/connector/
H A DaddConnectorTest.js67 _.delay(function () {
/forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/test/js/
H A Drun.js75 _.delay(function () {
/forgerock/openidm-v4/openidm-smartevent/src/main/java/org/forgerock/openidm/smartevent/core/
H A DStatisticsHandler.java98 long delay = 60;
100 logScheduler.scheduleWithFixedDelay(logTotal, initialDelay, delay, TimeUnit.SECONDS);
118 long delay = 60;
120 logScheduler.scheduleWithFixedDelay(logTotal, initialDelay, delay, TimeUnit.SECONDS);

Completed in 175 milliseconds

1234