Home
last modified time | relevance | path

Searched refs:runnable (Results 76 – 100 of 8096) sorted by relevance

12345678910>>...324

/dports/devel/zpu-binutils/zpu-toolchain-1.0/toolchain/gcc/libjava/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable;
126 public InvocationEvent(Object source, Runnable runnable)
128 this(source, INVOCATION_DEFAULT, runnable, null, false);
144 public InvocationEvent(Object source, Runnable runnable, Object notifier,
147 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions);
165 protected InvocationEvent(Object source, int id, Runnable runnable,
169 this.runnable = runnable;
184 runnable.run();
191 runnable.run();
229 : "unknown type,runnable=") + runnable + ",notifier=" + notifier
/dports/www/firefox-legacy/firefox-52.8.0esr/ipc/hal/
H A DDaemonRunnables.h81 if (!runnable) { in Dispatch()
137 if (!runnable) { in Dispatch()
200 if (!runnable) { in Dispatch()
277 if (!runnable) { in Dispatch()
337 if (!runnable) { in Dispatch()
404 if (!runnable) { in Dispatch()
475 if (!runnable) { in Dispatch()
549 if (!runnable) { in Dispatch()
626 if (!runnable) { in Dispatch()
706 if (!runnable) { in Dispatch()
[all …]
/dports/graphics/jogamp-jogl/gluegen/src/java/com/jogamp/common/util/
H A DRunnableTask.java40 protected final Runnable runnable; field in RunnableTask
45 public static void invoke(final boolean waitUntilDone, final Runnable runnable) { in invoke() argument
46 runnable.run(); in invoke()
53 final RunnableTask rt = invokeOnNewThread(tg, threadName, waitUntilDone, runnable); in invokeOnNewThread()
69 … final boolean waitUntilDone, final Runnable runnable) { in invokeOnNewThread() argument
72 rt = new RunnableTask( runnable, null, true, System.err ); in invokeOnNewThread()
77 rt = new RunnableTask( runnable, sync, true, null ); in invokeOnNewThread()
111 this.runnable = runnable ; in RunnableTask()
116 return runnable; in getRunnable()
127 runnable.run(); in run()
[all …]
/dports/java/sablevm-classpath/sablevm-classpath-1.13/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable; field in InvocationEvent
126 public InvocationEvent(Object source, Runnable runnable) in InvocationEvent() argument
128 this(source, INVOCATION_DEFAULT, runnable, null, false); in InvocationEvent()
144 public InvocationEvent(Object source, Runnable runnable, Object notifier, in InvocationEvent() argument
147 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions); in InvocationEvent()
165 protected InvocationEvent(Object source, int id, Runnable runnable, in InvocationEvent() argument
169 this.runnable = runnable; in InvocationEvent()
184 runnable.run(); in dispatch()
191 runnable.run(); in dispatch()
234 : "unknown type,runnable=") + runnable + ",notifier=" + notifier in paramString()
/dports/lang/spidermonkey78/firefox-78.9.0/xpcom/tests/gtest/
H A DTestThreadMetrics.cpp94 nsCOMPtr<nsIRunnable> runnable = aRunnable; in DispatchWithDocgroup() local
95 runnable = new SchedulerGroup::Runnable(runnable.forget(), aDocGroup); in DispatchWithDocgroup()
167 rv = Dispatch(runnable); in TEST_F()
197 runnable->AddNestedRunnable({nested}); in TEST_F()
198 rv = Dispatch(runnable); in TEST_F()
216 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
233 runnable->AddNestedRunnable({nested}); in TEST_F()
236 rv = Dispatch(runnable); in TEST_F()
254 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
274 runnable->AddNestedRunnable({nested2}); in TEST_F()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/xpcom/tests/gtest/
H A DTestThreadMetrics.cpp94 nsCOMPtr<nsIRunnable> runnable = aRunnable; in DispatchWithDocgroup() local
95 runnable = new SchedulerGroup::Runnable(runnable.forget(), in DispatchWithDocgroup()
170 rv = Dispatch(runnable); in TEST_F()
201 runnable->AddNestedRunnable({nested}); in TEST_F()
202 rv = Dispatch(runnable); in TEST_F()
220 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
237 runnable->AddNestedRunnable({nested}); in TEST_F()
240 rv = Dispatch(runnable); in TEST_F()
258 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
278 runnable->AddNestedRunnable({nested2}); in TEST_F()
[all …]
/dports/www/firefox/firefox-99.0/xpcom/tests/gtest/
H A DTestThreadMetrics.cpp94 nsCOMPtr<nsIRunnable> runnable = aRunnable; in DispatchWithDocgroup() local
95 runnable = new SchedulerGroup::Runnable(runnable.forget(), in DispatchWithDocgroup()
170 rv = Dispatch(runnable); in TEST_F()
201 runnable->AddNestedRunnable({nested}); in TEST_F()
202 rv = Dispatch(runnable); in TEST_F()
220 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
237 runnable->AddNestedRunnable({nested}); in TEST_F()
240 rv = Dispatch(runnable); in TEST_F()
258 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
278 runnable->AddNestedRunnable({nested2}); in TEST_F()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/xpcom/tests/gtest/
H A DTestThreadMetrics.cpp94 nsCOMPtr<nsIRunnable> runnable = aRunnable; in DispatchWithDocgroup() local
95 runnable = new SchedulerGroup::Runnable(runnable.forget(), in DispatchWithDocgroup()
170 rv = Dispatch(runnable); in TEST_F()
201 runnable->AddNestedRunnable({nested}); in TEST_F()
202 rv = Dispatch(runnable); in TEST_F()
220 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
237 runnable->AddNestedRunnable({nested}); in TEST_F()
240 rv = Dispatch(runnable); in TEST_F()
258 ASSERT_GE(duration, runnable->TotalSlept()); in TEST_F()
278 runnable->AddNestedRunnable({nested2}); in TEST_F()
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable; field in InvocationEvent
133 public InvocationEvent(Object source, Runnable runnable) in InvocationEvent() argument
135 this(source, INVOCATION_DEFAULT, runnable, null, false); in InvocationEvent()
151 public InvocationEvent(Object source, Runnable runnable, Object notifier, in InvocationEvent() argument
154 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions); in InvocationEvent()
172 protected InvocationEvent(Object source, int id, Runnable runnable, in InvocationEvent() argument
176 this.runnable = runnable; in InvocationEvent()
191 runnable.run(); in dispatch()
200 runnable.run(); in dispatch()
255 : "unknown type,runnable=") + runnable + ",notifier=" + notifier in paramString()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable; field in InvocationEvent
133 public InvocationEvent(Object source, Runnable runnable) in InvocationEvent() argument
135 this(source, INVOCATION_DEFAULT, runnable, null, false); in InvocationEvent()
151 public InvocationEvent(Object source, Runnable runnable, Object notifier, in InvocationEvent() argument
154 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions); in InvocationEvent()
172 protected InvocationEvent(Object source, int id, Runnable runnable, in InvocationEvent() argument
176 this.runnable = runnable; in InvocationEvent()
191 runnable.run(); in dispatch()
200 runnable.run(); in dispatch()
255 : "unknown type,runnable=") + runnable + ",notifier=" + notifier in paramString()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable; field in InvocationEvent
133 public InvocationEvent(Object source, Runnable runnable) in InvocationEvent() argument
135 this(source, INVOCATION_DEFAULT, runnable, null, false); in InvocationEvent()
151 public InvocationEvent(Object source, Runnable runnable, Object notifier, in InvocationEvent() argument
154 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions); in InvocationEvent()
172 protected InvocationEvent(Object source, int id, Runnable runnable, in InvocationEvent() argument
176 this.runnable = runnable; in InvocationEvent()
191 runnable.run(); in dispatch()
200 runnable.run(); in dispatch()
255 : "unknown type,runnable=") + runnable + ",notifier=" + notifier in paramString()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable; field in InvocationEvent
133 public InvocationEvent(Object source, Runnable runnable) in InvocationEvent() argument
135 this(source, INVOCATION_DEFAULT, runnable, null, false); in InvocationEvent()
151 public InvocationEvent(Object source, Runnable runnable, Object notifier, in InvocationEvent() argument
154 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions); in InvocationEvent()
172 protected InvocationEvent(Object source, int id, Runnable runnable, in InvocationEvent() argument
176 this.runnable = runnable; in InvocationEvent()
191 runnable.run(); in dispatch()
200 runnable.run(); in dispatch()
255 : "unknown type,runnable=") + runnable + ",notifier=" + notifier in paramString()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/java/awt/event/
H A DInvocationEvent.java80 protected Runnable runnable; field in InvocationEvent
133 public InvocationEvent(Object source, Runnable runnable) in InvocationEvent() argument
135 this(source, INVOCATION_DEFAULT, runnable, null, false); in InvocationEvent()
151 public InvocationEvent(Object source, Runnable runnable, Object notifier, in InvocationEvent() argument
154 this(source, INVOCATION_DEFAULT, runnable, notifier, catchExceptions); in InvocationEvent()
172 protected InvocationEvent(Object source, int id, Runnable runnable, in InvocationEvent() argument
176 this.runnable = runnable; in InvocationEvent()
191 runnable.run(); in dispatch()
200 runnable.run(); in dispatch()
255 : "unknown type,runnable=") + runnable + ",notifier=" + notifier in paramString()
/dports/devel/hadoop2/hadoop-2.7.2-src/hadoop-hdfs-project/hadoop-hdfs-httpfs/src/main/java/org/apache/hadoop/lib/lang/
H A DRunnableCallable.java32 private Runnable runnable; field in RunnableCallable
40 public RunnableCallable(Runnable runnable) { in RunnableCallable() argument
41 this.runnable = Check.notNull(runnable, "runnable"); in RunnableCallable()
62 if (runnable != null) { in call()
63 runnable.run(); in call()
77 if (runnable != null) { in run()
78 runnable.run(); in run()
95 …return (runnable != null) ? runnable.getClass().getSimpleName() : callable.getClass().getSimpleNam… in toString()
/dports/net-p2p/vuze/vuze-5.7.4.0_2/org/gudy/azureus2/core3/util/
H A DThreadPool.java255 runIt( runnable ); in run()
265 runIt( runnable ); in run()
280 task_queue.add( runnable ); in run()
302 AERunnable runnable ) in runIt() argument
309 runnable.run(); in runIt()
328 runnable.run(); in runIt()
400 if ( runnable != null ){ in getRunningTasks()
429 if ( runnable != null ){ in getRunningCount()
717 runIt(runnable); in run()
733 runIt(runnable); in run()
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Dscheduler_test.go10 level, runnable := s.next()
11 if exp, got := true, runnable; exp != got {
29 _, runnable := s.next()
30 if exp, got := false, runnable; exp != got {
39 _, runnable := s.next()
40 if exp, got := false, runnable; exp != got {
49 _, runnable := s.next()
50 if exp, got := false, runnable; exp != got {
59 _, runnable := s.next()
60 if exp, got := false, runnable; exp != got {
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Dscheduler_test.go10 level, runnable := s.next()
11 if exp, got := true, runnable; exp != got {
29 _, runnable := s.next()
30 if exp, got := false, runnable; exp != got {
39 _, runnable := s.next()
40 if exp, got := false, runnable; exp != got {
49 _, runnable := s.next()
50 if exp, got := false, runnable; exp != got {
59 _, runnable := s.next()
60 if exp, got := false, runnable; exp != got {
[all …]
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Dscheduler_test.go10 level, runnable := s.next()
11 if exp, got := true, runnable; exp != got {
29 _, runnable := s.next()
30 if exp, got := false, runnable; exp != got {
39 _, runnable := s.next()
40 if exp, got := false, runnable; exp != got {
49 _, runnable := s.next()
50 if exp, got := false, runnable; exp != got {
59 _, runnable := s.next()
60 if exp, got := false, runnable; exp != got {
[all …]
/dports/net-mgmt/bosun/bosun-0.9.0-preview/vendor/github.com/influxdata/influxdb/tsdb/engine/tsm1/
H A Dscheduler_test.go10 level, runnable := s.next()
11 if exp, got := true, runnable; exp != got {
29 _, runnable := s.next()
30 if exp, got := false, runnable; exp != got {
39 _, runnable := s.next()
40 if exp, got := false, runnable; exp != got {
49 _, runnable := s.next()
50 if exp, got := false, runnable; exp != got {
59 _, runnable := s.next()
60 if exp, got := false, runnable; exp != got {
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/cronet/native/sample/
H A Dsample_executor.cc36 Cronet_RunnablePtr runnable = nullptr; in RunTasksInQueue() local
49 runnable = task_queue_.front(); in RunTasksInQueue()
52 Cronet_Runnable_Run(runnable); in RunTasksInQueue()
53 Cronet_Runnable_Destroy(runnable); in RunTasksInQueue()
72 void SampleExecutor::Execute(Cronet_RunnablePtr runnable) { in Execute() argument
76 task_queue_.push(runnable); in Execute()
77 runnable = nullptr; in Execute()
80 if (runnable) { in Execute()
81 Cronet_Runnable_Destroy(runnable); in Execute()
89 Cronet_RunnablePtr runnable) { in Execute() argument
[all …]
/dports/databases/hsqldb/hsqldb-2.3.4/hsqldb/src/org/hsqldb/lib/
H A DHsqlTimer.java126 public Thread newThread(final Runnable runnable) { in newThread() argument
128 final Thread thread = new Thread(runnable); in newThread()
181 if (runnable == null) { in scheduleAfter()
198 final Runnable runnable) in scheduleAt() argument
203 } else if (runnable == null) { in scheduleAt()
231 } else if (runnable == null) { in schedulePeriodicallyAt()
250 final long period, final Runnable runnable, in schedulePeriodicallyAfter() argument
255 } else if (runnable == null) { in schedulePeriodicallyAfter()
644 task.runnable.run(); in run()
662 Runnable runnable; field in HsqlTimer.Task
[all …]
/dports/net/jgroups/jgroups-2.12.0/src/org/jgroups/protocols/
H A DExecuting.java175 _awaitingConsumer.add(runnable); in down()
184 runnable = _tasks.take(); in down()
186 return runnable; in down()
202 runnable = (Runnable)arg; in down()
282 runnable = (Runnable)array[0]; in down()
396 Runnable runnable; in up() local
544 if (runnable == null) { in handleConsumerFoundResponse()
596 _running.remove(runnable); in handleTaskSubmittedRequest()
603 if (runnable != null) { in handleTaskRejectedResponse()
604 _awaitingConsumer.add(runnable); in handleTaskRejectedResponse()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/widgets/
H A DRunnableLock.java25 Runnable runnable; field in RunnableLock
29 RunnableLock (Runnable runnable) { in RunnableLock() argument
30 this.runnable = runnable; in RunnableLock()
34 return runnable == null || throwable != null; in done()
38 if (runnable != null) { in run()
40 runnable.run (); in run()
47 runnable = null; in run()
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/widgets/
H A DRunnableLock.java25 Runnable runnable; field in RunnableLock
29 RunnableLock (Runnable runnable) { in RunnableLock() argument
30 this.runnable = runnable; in RunnableLock()
34 return runnable == null || throwable != null; in done()
38 if (runnable != null) { in run()
40 runnable.run (); in run()
47 runnable = null; in run()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/test/java/org/springframework/scheduling/concurrent/
H A DScheduledExecutorFactoryBeanTests.java103 Runnable runnable = (Runnable) mockRunnable.getMock(); in testOneTimeExecutionIsSetUpAndFiresCorrectly() local
104 runnable.run(); in testOneTimeExecutionIsSetUpAndFiresCorrectly()
110 new ScheduledExecutorTask(runnable) in testOneTimeExecutionIsSetUpAndFiresCorrectly()
123 runnable.run(); in testFixedRepeatedExecutionIsSetUpAndFiresCorrectly()
125 runnable.run(); in testFixedRepeatedExecutionIsSetUpAndFiresCorrectly()
146 runnable.run(); in testFixedRepeatedExecutionIsSetUpAndFiresCorrectlyAfterException()
148 runnable.run(); in testFixedRepeatedExecutionIsSetUpAndFiresCorrectlyAfterException()
171 runnable.run(); in testWithInitialDelayRepeatedExecutionIsSetUpAndFiresCorrectly()
173 runnable.run(); in testWithInitialDelayRepeatedExecutionIsSetUpAndFiresCorrectly()
201 runnable.run(); in testWithInitialDelayRepeatedExecutionIsSetUpAndFiresCorrectlyAfterException()
[all …]

12345678910>>...324