Searched defs:delay (Results 1 - 25 of 27) sorted by relevance

12

/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/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/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/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/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/opendj-b2.6/src/server/org/opends/server/replication/server/
H A DDbHandler.java585 * Set the Purge delay for this db Handler.
586 * @param delay The purge delay in Milliseconds.
588 public void setPurgeDelay(long delay) argument
590 trimAge = delay;
H A DDraftCNDbHandler.java497 * Set the Purge delay for this db Handler.
498 * @param delay The purge delay in Milliseconds.
500 public void setPurgeDelay(long delay) argument
502 trimAge = delay;
H A DReplicationServerDomain.java435 * delay between the time the server has a wrong status and the fact we
2791 * Set the purge delay on all the db Handlers for this Domain
2794 * @param delay The new purge delay to use.
2796 public void setPurgeDelay(long delay) argument
2800 handler.setPurgeDelay(delay);
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/server/
H A DDbHandler.java585 * Set the Purge delay for this db Handler.
586 * @param delay The purge delay in Milliseconds.
588 public void setPurgeDelay(long delay) argument
590 trimAge = delay;
H A DDraftCNDbHandler.java518 * Set the Purge delay for this db Handler.
519 * @param delay The purge delay in Milliseconds.
521 public void setPurgeDelay(long delay) argument
523 trimAge = delay;
H A DReplicationServerDomain.java525 * delay between the time the server has a wrong status and the fact we
2820 * Set the purge delay on all the db Handlers for this Domain
2823 * @param delay The new purge delay to use.
2825 public void setPurgeDelay(long delay) argument
2829 handler.setPurgeDelay(delay);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/server/
H A DDbHandler.java585 * Set the Purge delay for this db Handler.
586 * @param delay The purge delay in Milliseconds.
588 public void setPurgeDelay(long delay) argument
590 trimAge = delay;
H A DDraftCNDbHandler.java497 * Set the Purge delay for this db Handler.
498 * @param delay The purge delay in Milliseconds.
500 public void setPurgeDelay(long delay) argument
502 trimAge = delay;
H A DReplicationServerDomain.java435 * delay between the time the server has a wrong status and the fact we
2791 * Set the purge delay on all the db Handlers for this Domain
2794 * @param delay The new purge delay to use.
2796 public void setPurgeDelay(long delay) argument
2800 handler.setPurgeDelay(delay);
/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/openidm-v4/openidm-infoservice/src/main/java/org/forgerock/openidm/info/impl/
H A DHealthService.java433 * @param delay a delay in milliseconds before checking the state.
435 private void scheduleCheckStartup(long delay) { argument
453 scheduledExecutor.schedule(command, delay, TimeUnit.MILLISECONDS);
/forgerock/openam-v13/openam-authentication/deviceprint/scripts/src/main/resources/js/
H A Djquery.js3516 // Handle it asynchronously to allow scripts the opportunity to delay ready
7681 // http://blindsignals.com/index.php/2009/07/jquery-delay/
7682 jQuery.fn.delay = function( time, type ) {
7877 // force reflow of newly added node in order to workaround delay
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsqljet.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dsqljet-1.1.10.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...

Completed in 306 milliseconds

12