Home
last modified time | relevance | path

Searched refs:not_empty (Results 1 – 25 of 825) sorted by relevance

12345678910>>...33

/dports/net-im/tdlib/td-a53cb30e99f937cfd64e0266fa558785a184a553/td/mtproto/
H A DCryptoStorer.h52 bool not_empty() const { in not_empty() function
94 bool not_empty() const { in not_empty() function
219 … , cnt_(static_cast<int32>(to_send.size()) + ack_storer_.not_empty() + ping_storer_.not_empty() + in CryptoImpl()
220 …http_wait_storer_.not_empty() + get_future_salts_storer_.not_empty() + get_info_storer_.not_empty(… in CryptoImpl()
221 resend_storer_.not_empty() + cancel_cnt_ + destroy_key_storer_.not_empty()) in CryptoImpl()
246 } else if (ack_storer_.not_empty()) { in CryptoImpl()
249 } else if (ping_storer_.not_empty()) { in CryptoImpl()
252 } else if (http_wait_storer_.not_empty()) { in CryptoImpl()
258 } else if (get_info_storer_.not_empty()) { in CryptoImpl()
261 } else if (resend_storer_.not_empty()) { in CryptoImpl()
[all …]
/dports/math/R-cran-assertthat/assertthat/man/
H A Dnot_empty.Rd3 \name{not_empty}
4 \alias{not_empty}
7 not_empty(x)
16 not_empty(numeric())
17 not_empty(mtcars[0, ])
18 not_empty(mtcars[, 0])
/dports/textproc/py-genshi/Genshi-0.7.3/examples/tutorial/geddit/
H A Dform.py5 username = validators.UnicodeString(not_empty=True)
6 url = validators.URL(not_empty=True, add_http=True, check_exists=False)
7 title = validators.UnicodeString(not_empty=True)
11 username = validators.UnicodeString(not_empty=True)
12 content = validators.UnicodeString(not_empty=True)
/dports/www/py-formencode/FormEncode-1.3.0/formencode/
H A Dcompound.py116 def not_empty(self): member in Any
117 not_empty = True
119 not_empty = not_empty and getattr(validator, 'not_empty', False)
120 return not_empty
221 def not_empty(self): member in All
222 not_empty = False
224 not_empty = not_empty or getattr(validator, 'not_empty', False)
225 return not_empty
/dports/www/fusionpbx/fusionpbx-4.4.1/resources/install/scripts/app/fax/resources/scripts/queue/
H A Dexec.lua41 local function not_empty(t) if not empty(t) then return t end end function
46 dtmf = not_empty(task.dtmf)
47 wav_file = not_empty(task.wav_file) or not_empty(task.greeting)
48 fax_file = not_empty(task.fax_file)
50 dtmf = not_empty(session:getVariable('fax_dtmf'))
51 wav_file = not_empty(session:getVariable('wav_file'))
52 fax_file = not_empty(session:getVariable('fax_file'))
/dports/devel/simgear/simgear-2020.3.11/simgear/threads/
H A DSGQueue.hxx199 not_empty.signal(); in push()
228 not_empty.wait(mutex); in pop()
258 SGWaitCondition not_empty; member in SGBlockingQueue
315 not_empty.signal(); in push_front()
327 not_empty.signal(); in push_back()
358 not_empty.wait(mutex); in pop_front()
379 not_empty.wait(mutex); in pop_back()
403 not_empty.wait(mutex); in waitOnNotEmpty()
422 SGWaitCondition not_empty; member in SGBlockingDeque
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/autofill_assistant/browser/actions/
H A Dget_element_status_action_unittest.cc100 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
123 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
145 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
163 AllOf(Property(&GetElementStatusProto::Result::not_empty, in TEST_F()
197 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
225 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
253 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
281 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
309 AllOf(Property(&GetElementStatusProto::Result::not_empty, true), in TEST_F()
369 Property(&GetElementStatusProto::Result::not_empty, false), in TEST_F()
[all …]
/dports/databases/py-sqlalchemy11/SQLAlchemy-1.1.18/lib/sqlalchemy/util/
H A Dqueue.py56 self.not_empty = threading.Condition(self.mutex)
118 self.not_empty.notify()
141 self.not_empty.acquire()
148 self.not_empty.wait()
157 self.not_empty.wait(remaining)
162 self.not_empty.release()
/dports/databases/py-sqlalchemy12/SQLAlchemy-1.2.19/lib/sqlalchemy/util/
H A Dqueue.py57 self.not_empty = threading.Condition(self.mutex)
119 self.not_empty.notify()
142 self.not_empty.acquire()
149 self.not_empty.wait()
158 self.not_empty.wait(remaining)
163 self.not_empty.release()
/dports/databases/py-sqlalchemy10/SQLAlchemy-1.0.14/lib/sqlalchemy/util/
H A Dqueue.py56 self.not_empty = threading.Condition(self.mutex)
118 self.not_empty.notify()
141 self.not_empty.acquire()
148 self.not_empty.wait()
157 self.not_empty.wait(remaining)
162 self.not_empty.release()
/dports/databases/py-sqlalchemy13/SQLAlchemy-1.3.24/lib/sqlalchemy/util/
H A Dqueue.py59 self.not_empty = threading.Condition(self.mutex)
123 self.not_empty.notify()
146 self.not_empty.acquire()
153 self.not_empty.wait()
162 self.not_empty.wait(remaining)
167 self.not_empty.release()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/storage/ndb/memcache/src/
H A Dworkqueue.cc60 pthread_cond_init(& q->not_empty, NULL); in workqueue_init()
73 pthread_cond_destroy(& q->not_empty); in workqueue_destroy()
90 pthread_cond_signal(& q->not_empty); /* ping a consumer */ in workqueue_add()
107 pthread_cond_signal(& q->not_empty); in workqueue_add()
136 pthread_cond_wait(& q->not_empty, & q->signal_lock); /* sleep */ in workqueue_consumer_wait()
183 pthread_cond_broadcast(& q->not_empty); in workqueue_abort()
/dports/databases/percona57-server/percona-server-5.7.36-39/storage/ndb/memcache/src/
H A Dworkqueue.c62 pthread_cond_init(& q->not_empty, NULL); in workqueue_init()
75 pthread_cond_destroy(& q->not_empty); in workqueue_destroy()
92 pthread_cond_signal(& q->not_empty); /* ping a consumer */ in workqueue_add()
109 pthread_cond_signal(& q->not_empty); in workqueue_add()
138 pthread_cond_wait(& q->not_empty, & q->signal_lock); /* sleep */ in workqueue_consumer_wait()
185 pthread_cond_broadcast(& q->not_empty); in workqueue_abort()
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/storage/ndb/memcache/src/
H A Dworkqueue.c62 pthread_cond_init(& q->not_empty, NULL); in workqueue_init()
75 pthread_cond_destroy(& q->not_empty); in workqueue_destroy()
92 pthread_cond_signal(& q->not_empty); /* ping a consumer */ in workqueue_add()
109 pthread_cond_signal(& q->not_empty); in workqueue_add()
138 pthread_cond_wait(& q->not_empty, & q->signal_lock); /* sleep */ in workqueue_consumer_wait()
185 pthread_cond_broadcast(& q->not_empty); in workqueue_abort()
/dports/databases/percona57-client/percona-server-5.7.36-39/storage/ndb/memcache/src/
H A Dworkqueue.c62 pthread_cond_init(& q->not_empty, NULL); in workqueue_init()
75 pthread_cond_destroy(& q->not_empty); in workqueue_destroy()
92 pthread_cond_signal(& q->not_empty); /* ping a consumer */ in workqueue_add()
109 pthread_cond_signal(& q->not_empty); in workqueue_add()
138 pthread_cond_wait(& q->not_empty, & q->signal_lock); /* sleep */ in workqueue_consumer_wait()
185 pthread_cond_broadcast(& q->not_empty); in workqueue_abort()
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/storage/ndb/memcache/src/
H A Dworkqueue.c62 pthread_cond_init(& q->not_empty, NULL); in workqueue_init()
75 pthread_cond_destroy(& q->not_empty); in workqueue_destroy()
92 pthread_cond_signal(& q->not_empty); /* ping a consumer */ in workqueue_add()
109 pthread_cond_signal(& q->not_empty); in workqueue_add()
138 pthread_cond_wait(& q->not_empty, & q->signal_lock); /* sleep */ in workqueue_consumer_wait()
185 pthread_cond_broadcast(& q->not_empty); in workqueue_abort()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/storage/ndb/memcache/src/
H A Dworkqueue.c62 pthread_cond_init(& q->not_empty, NULL); in workqueue_init()
75 pthread_cond_destroy(& q->not_empty); in workqueue_destroy()
92 pthread_cond_signal(& q->not_empty); /* ping a consumer */ in workqueue_add()
109 pthread_cond_signal(& q->not_empty); in workqueue_add()
138 pthread_cond_wait(& q->not_empty, & q->signal_lock); /* sleep */ in workqueue_consumer_wait()
185 pthread_cond_broadcast(& q->not_empty); in workqueue_abort()
/dports/math/cado-nfs/cado-nfs-f4284e2391121b2bfb97bc4880b6273c7250dc2f/utils/
H A Dthreadpool.cpp87 condition_variable not_empty; member in tasks_queue
94 condition_variable not_empty; member in results_queue
99 condition_variable not_empty; member in exceptions_queue
123 for (auto & T : tasks) broadcast(T.not_empty); /* Wakey wakey, time to die */ in ~thread_pool()
220 signal(tasks[i].not_empty); in add_task()
235 wait(tasks[preferred_queue].not_empty); in get_task()
265 signal(results[queue].not_empty); in add_result()
276 signal(results[queue].not_empty); in add_exception()
293 wait(results[queue].not_empty); in get_result()
308 wait(results[queue].not_empty); in drain_queue()
/dports/math/R-cran-assertthat/assertthat/tests/testthat/
H A Dtest-assertions.R136 expect_true(not_empty(1))
137 expect_false(not_empty(numeric()))
138 expect_false(not_empty(mtcars[0, ]))
139 expect_false(not_empty(mtcars[, 0]))
141 expect_true(not_empty(NA))
142 expect_false(not_empty(NULL))
/dports/devel/py-game_sdl2/pygame_sdl2-2.1.0-for-renpy-7.4.11/src/pygame_sdl2/threads/
H A DPy25Queue.py35 self.not_empty = threading.Condition(self.mutex)
136 self.not_empty.notify()
159 self.not_empty.acquire()
166 self.not_empty.wait()
175 self.not_empty.wait(remaining)
180 self.not_empty.release()
/dports/math/scilab/scilab-6.1.1/scilab/modules/m2sci/macros/percent/
H A D%m2sci.sci38 if not_empty(A) & not_empty(B) then
65 elseif not_empty(A) & not_empty(B) then
69 elseif not_empty(A) | not_empty(B) then
/dports/devel/py-sentry-sdk/sentry-sdk-1.4.3/sentry_sdk/
H A D_queue.py55 self.not_empty = threading.Condition(self.mutex)
161 self.not_empty.notify()
174 with self.not_empty:
180 self.not_empty.wait()
189 self.not_empty.wait(remaining)
/dports/lang/python-legacy/Python-2.7.18/Lib/
H A DQueue.py36 self.not_empty = _threading.Condition(self.mutex)
138 self.not_empty.notify()
161 self.not_empty.acquire()
168 self.not_empty.wait()
177 self.not_empty.wait(remaining)
182 self.not_empty.release()
/dports/lang/python27/Python-2.7.18/Lib/
H A DQueue.py36 self.not_empty = _threading.Condition(self.mutex)
138 self.not_empty.notify()
161 self.not_empty.acquire()
168 self.not_empty.wait()
177 self.not_empty.wait(remaining)
182 self.not_empty.release()
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DQueue.py36 self.not_empty = _threading.Condition(self.mutex)
138 self.not_empty.notify()
161 self.not_empty.acquire()
168 self.not_empty.wait()
177 self.not_empty.wait(remaining)
182 self.not_empty.release()

12345678910>>...33