HomeSort by relevance Sort by last modified time
    Searched defs:schedule (Results 1 - 25 of 117) sorted by null

1 2 3 4 5

  /external/v8/tools/link_clicker.extension/
content.js 40 if (enabled) schedule();
54 // Schedule in case we just followed an anchor.
55 schedule();
59 function schedule() { function
  /external/junit/src/main/java/org/junit/runners/model/
RunnerScheduler.java 13 * Schedule a child statement to run
15 void schedule(Runnable childStatement); method in interface:RunnerScheduler
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
JobExecutor.java 42 /** Schedule job for (periodic) execution.
49 public void schedule(final JobBase job, final GceFuture<?>... futures) { method in class:JobExecutor
50 mExecutor.schedule(new Runnable() {
103 mExecutor.schedule(this, delaySeconds, TimeUnit.SECONDS);
  /external/guava/guava/src/com/google/common/util/concurrent/
ListeningScheduledExecutorService.java 40 ListenableScheduledFuture<?> schedule( method in interface:ListeningScheduledExecutorService
45 <V> ListenableScheduledFuture<V> schedule( method in interface:ListeningScheduledExecutorService
WrappingScheduledExecutorService.java 41 public final ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorService
42 return delegate.schedule(wrapTask(command), delay, unit);
46 public final <V> ScheduledFuture<V> schedule(Callable<V> task, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorService
47 return delegate.schedule(wrapTask(task), delay, unit);
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
rx-immediate.hpp 37 virtual void schedule(const schedulable& scbl) const { function in struct:rxcpp::schedulers::immediate::immediate_worker
45 virtual void schedule(clock_type::time_point when, const schedulable& scbl) const { function in struct:rxcpp::schedulers::immediate::immediate_worker
rx-eventloop.hpp 54 virtual void schedule(const schedulable& scbl) const { function in struct:rxcpp::schedulers::event_loop::loop_worker
55 controller.schedule(lifetime, scbl.get_action());
58 virtual void schedule(clock_type::time_point when, const schedulable& scbl) const { function in struct:rxcpp::schedulers::event_loop::loop_worker
59 controller.schedule(when, lifetime, scbl.get_action());
rx-newthread.hpp 129 virtual void schedule(const schedulable& scbl) const { function in struct:rxcpp::schedulers::new_thread::new_worker
130 schedule(now(), scbl);
133 virtual void schedule(clock_type::time_point when, const schedulable& scbl) const { function in struct:rxcpp::schedulers::new_thread::new_worker
  /external/autotest/server/
sequence.py 6 Adds ability to schedule jobs on given machines.
118 def schedule(self, job, timeout_mins, machine): member in class:SequenceJob
122 Will schedule a given test on the job machine(s).
170 Schedule the tests to run
182 timeout_mins += test.schedule(job, timeout_mins, machine)
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/
CancelCall.java 39 // Schedule a job to cancel the call in 1 second.
40 executor.schedule(new Runnable() {
  /external/python/cpython2/Lib/idlelib/
ToolTip.py 20 self.schedule()
26 def schedule(self): member in class:ToolTipBase
  /external/python/cpython3/Lib/idlelib/
tooltip.py 115 self.schedule()
123 def schedule(self): member in class:OnHoverTooltipBase
124 """schedule the future display of the tooltip"""
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowJobScheduler.java 25 protected abstract int schedule(JobInfo job); method in class:ShadowJobScheduler
52 public int schedule(JobInfo job) { method in class:ShadowJobScheduler.ShadowJobSchedulerImpl
84 // Shadow-wise, enqueue and schedule are identical.
85 return schedule(job);
ShadowRenderNodeAnimator.java 41 // Only schedule if this wasn't called during an end() call, as Robolectric will run any
44 schedule(); method
52 schedule(); method
88 private void schedule() { method in class:ShadowRenderNodeAnimator
115 schedule();
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SuspendStateMonitor.java 81 sleepMonitoringTimer.schedule(this, 0, 100);
  /external/autotest/site_utils/
test_runner_utils_unittest.py 286 def schedule(self, *args, **kwargs): member in class:TestRunnerUnittests.test_perform_local_run.fake_suite
  /external/grpc-grpc/src/ruby/lib/grpc/generic/
rpc_server.rb 58 def schedule(*args, &blk) method in class:GRPC.Pool
62 GRPC.logger.warn('did not schedule job, already stopped')
65 GRPC.logger.info('schedule another job')
396 @pool.schedule(active_call) do |ac|
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
TestingExecutors.java 58 * that invokes {@code execute/submit/schedule}, as in
61 * {@code invokeAny}, {@code schedule}, {@code scheduleAtFixedRate}, and
130 @Override public <V> ListenableScheduledFuture<V> schedule( method in class:TestingExecutors.NoOpScheduledExecutorService
135 @Override public ListenableScheduledFuture<?> schedule( method in class:TestingExecutors.NoOpScheduledExecutorService
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 85 this.timer.schedule(timeoutTask, cacheTime*1000);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowJobSchedulerTest.java 42 jobScheduler.schedule(jobInfo);
49 jobScheduler.schedule(
53 jobScheduler.schedule(
67 jobScheduler.schedule(
81 jobScheduler.schedule(
96 jobScheduler.schedule(
108 jobScheduler.schedule(
125 jobScheduler.schedule(originalJobInfo);
142 jobScheduler.schedule(originalJobInfo);
  /external/v8/src/compiler/
basic-block-instrumentor.cc 14 #include "src/compiler/schedule.h"
49 OptimizedCompilationInfo* info, Graph* graph, Schedule* schedule,
56 size_t n_blocks = static_cast<size_t>(schedule->RpoBlockCount()) - 1;
60 // Capture the schedule string before instrumentation.
63 os << *schedule; local
71 BasicBlockVector* blocks = schedule->rpo_order();
97 schedule->SetBlockForNode(block, to_insert[i]);
effect-control-linearizer.h 28 class Schedule;
36 EffectControlLinearizer(JSGraph* graph, Schedule* schedule, Zone* temp_zone,
208 Schedule* schedule() const { return schedule_; } function in class:v8::internal::compiler::EffectControlLinearizer
217 Schedule* schedule_;
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingScheduledExecutorServiceTest.java 48 testExecutor.schedule(DO_NOTHING, 10, TimeUnit.MINUTES);
51 testExecutor.schedule(Executors.callable(DO_NOTHING), 5, TimeUnit.SECONDS);
125 @Override public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { method in class:WrappingScheduledExecutorServiceTest.MockExecutor
133 @Override public <V> ScheduledFuture<V> schedule( method in class:WrappingScheduledExecutorServiceTest.MockExecutor
  /external/vogar/src/vogar/commands/
Command.java 215 }.schedule(); method
217 }.schedule(); method
324 public final void schedule() { method in class:Command.TimeoutTask
325 timer.schedule(this, System.nanoTime() - timeoutNanoTime, TimeUnit.NANOSECONDS);
341 timer.schedule(this, System.nanoTime() - timeoutNanoTime, TimeUnit.NANOSECONDS);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/p2p/testcase/
ServRespTestCase.java 92 mTimer.schedule(new TimerTask() {

Completed in 1714 milliseconds

1 2 3 4 5