Searched defs:schedule (Results 1 - 18 of 18) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/services/
H A DScheduler.java37 public Collection<InputBlock> schedule(InputGraph graph); method in interface:Scheduler
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DScheduledExecutorService.java41 * An {@link ExecutorService} that can schedule commands to run after a given
44 * <p> The <tt>schedule</tt> methods create tasks with various delays
53 * periods) are also allowed in <tt>schedule</tt> methods, and are
56 * <p>All <tt>schedule</tt> methods accept <em>relative</em> delays and
59 * java.util.Date} to the required form. For example, to schedule at
60 * a certain future <tt>date</tt>, you can use: <tt>schedule(task,
87 * scheduler.schedule(new Runnable() {
112 public ScheduledFuture<?> schedule(Runnable command, method in interface:ScheduledExecutorService
127 public <V> ScheduledFuture<V> schedule(Callable<V> callable, method in interface:ScheduledExecutorService
H A DExecutors.java201 * Creates a single-threaded executor that can schedule commands
219 * Creates a single-threaded executor that can schedule commands
240 * Creates a thread pool that can schedule commands to run after a
252 * Creates a thread pool that can schedule commands to run after a
688 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:Executors.DelegatedScheduledExecutorService
689 return e.schedule(command, delay, unit);
691 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { method in class:Executors.DelegatedScheduledExecutorService
692 return e.schedule(callable, delay, unit);
H A DScheduledThreadPoolExecutor.java42 * A {@link ThreadPoolExecutor} that can additionally schedule
93 * {@code submit}, {@code schedule}, {@code scheduleAtFixedRate},
522 public ScheduledFuture<?> schedule(Runnable command, method in class:ScheduledThreadPoolExecutor
538 public <V> ScheduledFuture<V> schedule(Callable<V> callable, method in class:ScheduledThreadPoolExecutor
601 * {@link #schedule(Runnable,long,TimeUnit) schedule(command, 0, anyUnit)}.
619 schedule(command, 0, TimeUnit.NANOSECONDS);
629 return schedule(task, 0, TimeUnit.NANOSECONDS);
637 return schedule(Executors.callable(task, result),
646 return schedule(tas
[all...]
/openjdk7/jdk/test/javax/sound/sampled/DataLine/
H A DDataLine_ArrayIndexOutOfBounds.java105 public void schedule() { method in class:DataLine_ArrayIndexOutOfBounds.AsyncLineStopper
172 lineStopper.schedule();
/openjdk7/jdk/src/share/classes/java/util/
H A DTimer.java31 * A facility for threads to schedule tasks for future execution in a
54 * attempt to schedule a task on the timer will result in an
78 * it uses a binary heap to represent its task queue, so the cost to schedule
92 * thread. The timer produces tasks, via its various schedule calls,
139 * schedule repeating "maintenance activities", which must be
190 public void schedule(TimerTask task, long delay) { method in class:Timer
207 public void schedule(TimerTask task, Date time) { method in class:Timer
243 public void schedule(TimerTask task, long delay, long period) { method in class:Timer
284 public void schedule(TimerTask task, Date firstTime, long period) { method in class:Timer
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DDiagram.java75 public void schedule(Collection<InputBlock> newBlocks) { method in class:Diagram
76 graph.schedule(newBlocks);
/openjdk7/jdk/test/java/util/Timer/
H A DArgs.java34 void schedule(final Timer t, final TimerTask task, final Date d) { method in class:Args
35 t.schedule(task, d);
37 new F(){void f(){ t.schedule(task, d); }});
40 void schedule(final Timer t, final TimerTask task, final Date d, final long period) { method in class:Args
41 t.schedule(task, d, period);
43 new F(){void f(){ t.schedule(task, d, period); }});
63 new F(){void f(){ t.schedule(x, -42); }},
64 new F(){void f(){ t.schedule(x, new Date(-42)); }},
66 new F(){void f(){ t.schedule(x, Long.MAX_VALUE); }},
67 new F(){void f(){ t.schedule(
[all...]
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanManagerMXBean.java141 public void schedule(long delay, long interval) method in interface:ScanManagerMXBean
154 * {@link #schedule schedule}.
179 * This is equivalent to {@link #schedule(long,long) schedule(0,0)}.
H A DScanManager.java471 * application state. However, "schedule" can be called only if
483 // You can call schedule only when the current task is
485 allowedStates.put("schedule",EnumSet.of(STOPPED,COMPLETED));
577 // schedule() creates a new SessionTask that will be executed later
587 public void schedule(long delay, long interval) { method in class:ScanManager
593 final ScanState old = switchState(SCHEDULED,"schedule");
615 timer.schedule(task,delay);
620 // start() is equivalent to schedule(0,0)
625 schedule(0,0);
864 " failed to schedule nex
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputGraph.java79 public void schedule(Collection<InputBlock> newBlocks) { method in class:InputGraph
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/ServerCompiler/src/com/sun/hotspot/igv/servercompiler/
H A DServerCompilerScheduler.java188 public Collection<InputBlock> schedule(InputGraph graph) { method in class:ServerCompilerScheduler
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DWSEndpoint.java183 * calling {@link #schedule(Packet,CompletionCallback) } and
184 * {@link #schedule(Packet,CompletionCallback,FiberContextSwitchInterceptor)} methods.
223 public final void schedule(@NotNull Packet request, @NotNull CompletionCallback callback ) { method in class:WSEndpoint
224 schedule(request,callback,null);
230 * @see {@link #schedule(Packet, CompletionCallback)}
236 public abstract void schedule(@NotNull Packet request, @NotNull CompletionCallback callback, @Nullable FiberContextSwitchInterceptor interceptor ); method in class:WSEndpoint
239 schedule(request,callback,interceptor);
244 * submitted via schedule().
249 * submitted via schedule().
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DWSEndpointImpl.java234 public void schedule(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor) { method in class:WSEndpointImpl
238 private void processAsync(final Packet request, final CompletionCallback callback, FiberContextSwitchInterceptor interceptor, boolean schedule) { argument
273 if (schedule) {
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousChannelGroupImpl.java200 final Future<?> schedule(Runnable task, long timeout, TimeUnit unit) { method in class:AsynchronousChannelGroupImpl
202 return timeoutExecutor.schedule(task, timeout, unit);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DInfoWindow.java97 closer.schedule();
117 void schedule() { method in class:InfoWindow.Closer
118 XToolkit.schedule(this, time);
225 XToolkit.schedule(starter, TOOLTIP_START_DELAY_TIME);
H A DXToolkit.java1791 static void schedule(Runnable task, long interval) { method in class:XToolkit
1802 timeoutTaskLog.finer("XToolkit.schedule(): current time={0}" +
1844 * Executes mature timeout tasks registered with schedule().
/openjdk7/hotspot/src/share/vm/opto/
H A Dsuperword.cpp167 schedule();
1133 //------------------------------schedule---------------------------
1135 void SuperWord::schedule() { function in class:SuperWord
1197 // To schedule a store pack, we need to move any sandwiched memory ops either before
1207 // schedule this store AFTER the pack
1211 // To schedule a load pack, we use the memory state of either the first or the last load in

Completed in 119 milliseconds