Home
last modified time | relevance | path

Searched refs:synchronize (Results 1 – 25 of 5170) sorted by relevance

12345678910>>...207

/dports/games/gogui/gogui-1.4.10/test/junit/src/net/sf/gogui/gtp/
H A DGtpSynchronizerTest.java43 synchronize(); in testBasic()
47 synchronize(); in testBasic()
55 synchronize(); in testBasic()
59 synchronize(); in testBasic()
68 synchronize(); in testBasic()
80 synchronize(); in testBasicFillPasses()
84 synchronize(); in testBasicFillPasses()
93 synchronize(); in testBasicFillPasses()
97 synchronize(); in testBasicFillPasses()
107 synchronize(); in testBasicFillPasses()
[all …]
/dports/devel/py-fs/fs-0.5.4/fs/
H A Dmultifs.py101 @synchronize
107 @synchronize
114 @synchronize
134 @synchronize
161 @synchronize
172 @synchronize
177 @synchronize
191 @synchronize
195 @synchronize
205 @synchronize
[all …]
H A Drpcfs.py124 @synchronize
141 @synchronize
167 @synchronize
178 @synchronize
182 @synchronize
238 @synchronize
243 @synchronize
248 @synchronize
253 @synchronize
279 @synchronize
[all …]
H A Dmountfs.py128 @synchronize
156 @synchronize
166 @synchronize
179 @synchronize
189 @synchronize
200 @synchronize
244 @synchronize
288 @synchronize
300 @synchronize
314 @synchronize
[all …]
/dports/lang/ruby26/ruby-2.6.9/lib/shell/
H A Dprocess-controller.rb106 @jobs_sync.synchronize(:SH) do
122 @jobs_sync.synchronize(:SH) do
128 @jobs_sync.synchronize(:SH) do
134 @jobs_sync.synchronize(:SH) do
141 @jobs_sync.synchronize(:EX) do
153 @jobs_sync.synchronize(:EX) do
173 @jobs_sync.synchronize(:SH) do
179 @jobs_sync.synchronize(:SH) do
186 @jobs_sync.synchronize(:EX) do
218 @job_monitor.synchronize do
[all …]
/dports/lang/ruby26/ruby-2.6.9/test/ruby/
H A Dtest_thread_cv.rb19 mutex.synchronize do
21 mutex.synchronize do
44 mutex.synchronize do
70 mutex.synchronize do
78 mutex.synchronize do
123 mutex.synchronize do
145 mutex.synchronize do
225 Thread.new { mutex.synchronize { condvar.wait(mutex) } }
230 mutex.synchronize { condvar.wait(mutex) }
234 mutex.synchronize { condvar.broadcast }
[all …]
/dports/archivers/maxcso/maxcso-1.10.0/libuv/test/
H A Dtest-mutexes.c98 static void synchronize(void) { in synchronize() function
116 synchronize(); in thread_rwlock_trylock_peer()
122 synchronize(); in thread_rwlock_trylock_peer()
126 synchronize(); in thread_rwlock_trylock_peer()
131 synchronize(); in thread_rwlock_trylock_peer()
151 synchronize(); /* Releases the mutex to the other thread. */ in TEST_IMPL()
158 synchronize(); in TEST_IMPL()
162 synchronize(); in TEST_IMPL()
167 synchronize(); in TEST_IMPL()
173 synchronize(); in TEST_IMPL()
/dports/devel/py-uvloop/uvloop-0.16.0/vendor/libuv/test/
H A Dtest-mutexes.c98 static void synchronize(void) { in synchronize() function
116 synchronize(); in thread_rwlock_trylock_peer()
122 synchronize(); in thread_rwlock_trylock_peer()
126 synchronize(); in thread_rwlock_trylock_peer()
131 synchronize(); in thread_rwlock_trylock_peer()
151 synchronize(); /* Releases the mutex to the other thread. */ in TEST_IMPL()
158 synchronize(); in TEST_IMPL()
162 synchronize(); in TEST_IMPL()
167 synchronize(); in TEST_IMPL()
173 synchronize(); in TEST_IMPL()
/dports/devel/libuv/libuv-v1.42.0/test/
H A Dtest-mutexes.c98 static void synchronize(void) { in synchronize() function
116 synchronize(); in thread_rwlock_trylock_peer()
122 synchronize(); in thread_rwlock_trylock_peer()
126 synchronize(); in thread_rwlock_trylock_peer()
131 synchronize(); in thread_rwlock_trylock_peer()
151 synchronize(); /* Releases the mutex to the other thread. */ in TEST_IMPL()
158 synchronize(); in TEST_IMPL()
162 synchronize(); in TEST_IMPL()
167 synchronize(); in TEST_IMPL()
173 synchronize(); in TEST_IMPL()
/dports/www/R-cran-httpuv/httpuv/src/libuv/test/
H A Dtest-mutexes.c98 static void synchronize(void) { in synchronize() function
116 synchronize(); in thread_rwlock_trylock_peer()
122 synchronize(); in thread_rwlock_trylock_peer()
126 synchronize(); in thread_rwlock_trylock_peer()
131 synchronize(); in thread_rwlock_trylock_peer()
151 synchronize(); /* Releases the mutex to the other thread. */ in TEST_IMPL()
158 synchronize(); in TEST_IMPL()
162 synchronize(); in TEST_IMPL()
167 synchronize(); in TEST_IMPL()
173 synchronize(); in TEST_IMPL()
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/core/mutex/
H A Dsynchronize_spec.rb12 m1.synchronize do
31 lambda { m.synchronize { } }.should block_caller
36 lambda { m.synchronize { } }.should_not block_caller
45 m.synchronize {
53 lambda { m.synchronize { } }.should block_caller
62 m.synchronize do
63 lambda { m.synchronize { } }.should raise_error(ThreadError)
/dports/lang/ruby26/ruby-2.6.9/test/monitor/
H A Dtest_monitor.rb59 @monitor.synchronize do
67 @monitor.synchronize do
84 @monitor.synchronize {
90 @monitor.synchronize {
95 @monitor.synchronize do
171 @monitor.synchronize do
184 @monitor.synchronize do
190 @monitor.synchronize do
207 @monitor.synchronize do
213 @monitor.synchronize do
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/sherlock/
H A Dcollection.rb19 synchronize { @transactions << transaction }
25 synchronize { @transactions.each(&block) }
29 synchronize { @transactions.clear }
33 synchronize { @transactions.empty? }
46 def synchronize(&block) method in Gitlab.Sherlock.Collection
47 @mutex.synchronize(&block)
/dports/lang/ruby26/ruby-2.6.9/spec/ruby/library/conditionvariable/
H A Dwait_spec.rb11 m.synchronize do
22 m.synchronize { cv.signal }
33 m.synchronize do
63 m.synchronize do
79 m.synchronize {
100 m.synchronize {
107 Thread.pass until m.synchronize { events.size } == n_threads
109 m.synchronize do
/dports/net/rclone/rclone-1.57.0/vendor/github.com/billziss-gh/cgofuse/examples/memfs/
H A Dmemfs.go103 defer self.synchronize()()
109 defer self.synchronize()()
115 defer self.synchronize()()
121 defer self.synchronize()()
127 defer self.synchronize()()
150 defer self.synchronize()()
156 defer self.synchronize()()
169 defer self.synchronize()()
198 defer self.synchronize()()
210 defer self.synchronize()()
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/mads/phantom/
H A Dphantom_scenes1.h74 virtual void synchronize(Common::Serializer &s);
94 virtual void synchronize(Common::Serializer &s);
144 virtual void synchronize(Common::Serializer &s);
186 virtual void synchronize(Common::Serializer &s);
198 virtual void synchronize(Common::Serializer &s);
212 virtual void synchronize(Common::Serializer &s);
224 virtual void synchronize(Common::Serializer &s);
251 virtual void synchronize(Common::Serializer &s);
270 virtual void synchronize(Common::Serializer &s);
282 virtual void synchronize(Common::Serializer &s);
[all …]
H A Dphantom_scenes3.h67 virtual void synchronize(Common::Serializer &s);
79 virtual void synchronize(Common::Serializer &s);
95 virtual void synchronize(Common::Serializer &s);
125 virtual void synchronize(Common::Serializer &s);
147 virtual void synchronize(Common::Serializer &s);
162 virtual void synchronize(Common::Serializer &s);
174 virtual void synchronize(Common::Serializer &s);
195 virtual void synchronize(Common::Serializer &s);
216 virtual void synchronize(Common::Serializer &s);
237 virtual void synchronize(Common::Serializer &s);
/dports/games/scummvm/scummvm-2.5.1/engines/mads/phantom/
H A Dphantom_scenes1.h73 void synchronize(Common::Serializer &s) override;
93 void synchronize(Common::Serializer &s) override;
143 void synchronize(Common::Serializer &s) override;
185 void synchronize(Common::Serializer &s) override;
197 void synchronize(Common::Serializer &s) override;
211 void synchronize(Common::Serializer &s) override;
223 void synchronize(Common::Serializer &s) override;
250 void synchronize(Common::Serializer &s) override;
269 void synchronize(Common::Serializer &s) override;
281 void synchronize(Common::Serializer &s) override;
[all …]
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tsage/blue_force/
H A Dblueforce_logic.h62 virtual void synchronize(Serializer &s);
83 virtual void synchronize(Serializer &s);
97 virtual void synchronize(Serializer &s);
109 virtual void synchronize(Serializer &s) { in synchronize() function
110 SceneHotspot::synchronize(s); in synchronize()
123 virtual void synchronize(Serializer &s);
135 NamedObject::synchronize(s); in synchronize()
147 NamedObject::synchronize(s); in synchronize()
163 virtual void synchronize(Serializer &s);
173 virtual void synchronize(Serializer &s);
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/tsage/blue_force/
H A Dblueforce_logic.h62 void synchronize(Serializer &s) override;
83 void synchronize(Serializer &s) override;
97 void synchronize(Serializer &s) override;
109 void synchronize(Serializer &s) override { in synchronize() function
110 SceneHotspot::synchronize(s); in synchronize()
123 void synchronize(Serializer &s) override;
135 NamedObject::synchronize(s); in synchronize()
147 NamedObject::synchronize(s); in synchronize()
163 void synchronize(Serializer &s) override;
173 void synchronize(Serializer &s) override;
[all …]
/dports/devel/grpc134/grpc-1.34.1/src/ruby/pb/grpc/health/
H A Dchecker.rb36 @status_mutex.synchronize do
47 @status_mutex.synchronize { @statuses["#{service}"] = status }
52 @status_mutex.synchronize do
59 @status_mutex.synchronize do
66 @status_mutex.synchronize { @statuses.delete("#{service}") }
71 @status_mutex.synchronize { @statuses = {} }
/dports/devel/grpc/grpc-1.42.0/src/ruby/pb/grpc/health/
H A Dchecker.rb36 @status_mutex.synchronize do
47 @status_mutex.synchronize { @statuses["#{service}"] = status }
52 @status_mutex.synchronize do
59 @status_mutex.synchronize do
66 @status_mutex.synchronize { @statuses.delete("#{service}") }
71 @status_mutex.synchronize { @statuses = {} }
/dports/devel/grpc130/grpc-1.30.2/src/ruby/pb/grpc/health/
H A Dchecker.rb36 @status_mutex.synchronize do
47 @status_mutex.synchronize { @statuses["#{service}"] = status }
52 @status_mutex.synchronize do
59 @status_mutex.synchronize do
66 @status_mutex.synchronize { @statuses.delete("#{service}") }
71 @status_mutex.synchronize { @statuses = {} }
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/src/ruby/pb/grpc/health/
H A Dchecker.rb36 @status_mutex.synchronize do
47 @status_mutex.synchronize { @statuses["#{service}"] = status }
52 @status_mutex.synchronize do
59 @status_mutex.synchronize do
66 @status_mutex.synchronize { @statuses.delete("#{service}") }
71 @status_mutex.synchronize { @statuses = {} }
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/actions/
H A DSyncInfoSetStatusLineContributionGroup.java14 package org.eclipse.team.internal.ui.synchronize.actions;
19 import org.eclipse.team.core.synchronize.ISyncInfoSetChangeEvent;
20 import org.eclipse.team.core.synchronize.ISyncInfoSetChangeListener;
21 import org.eclipse.team.core.synchronize.SyncInfo;
22 import org.eclipse.team.core.synchronize.SyncInfoSet;
23 import org.eclipse.team.internal.ui.synchronize.SynchronizePageConfiguration;
24 import org.eclipse.team.ui.synchronize.ISynchronizePageConfiguration;

12345678910>>...207