Home
last modified time | relevance | path

Searched refs:notEmpty (Results 1 – 25 of 759) sorted by relevance

12345678910>>...31

/dports/java/apache-commons-lang/commons-lang-2.6-src/src/test/java/org/apache/commons/lang/
H A DValidateTest.java165 Validate.notEmpty(coll); in testNotEmptyCollection1()
171 Validate.notEmpty(coll); in testNotEmptyCollection1()
190 Validate.notEmpty(coll, "MSG"); in testNotEmptyCollection2()
197 Validate.notEmpty((Map) null); in testNotEmptyMap1()
203 Validate.notEmpty(map); in testNotEmptyMap1()
209 Validate.notEmpty(map); in testNotEmptyMap1()
228 Validate.notEmpty(map, "MSG"); in testNotEmptyMap2()
233 Validate.notEmpty("hjl"); in testNotEmptyString1()
241 Validate.notEmpty(""); in testNotEmptyString1()
250 Validate.notEmpty("a", "MSG"); in testNotEmptyString2()
[all …]
/dports/java/apache-commons-lang/commons-lang-2.6-src/src/main/java/org/apache/commons/lang/
H A DValidate.java210 public static void notEmpty(Object[] array, String message) { in notEmpty() method in Validate
228 public static void notEmpty(Object[] array) { in notEmpty() method in Validate
229 notEmpty(array, "The validated array is empty"); in notEmpty()
264 public static void notEmpty(Collection collection) { in notEmpty() method in Validate
265 notEmpty(collection, "The validated collection is empty"); in notEmpty()
282 public static void notEmpty(Map map, String message) { in notEmpty() method in Validate
301 public static void notEmpty(Map map) { in notEmpty() method in Validate
302 notEmpty(map, "The validated map is empty"); in notEmpty()
319 public static void notEmpty(String string, String message) { in notEmpty() method in Validate
338 public static void notEmpty(String string) { in notEmpty() method in Validate
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/respect/validation/docs/
H A DNotEmpty.md3 - `v::notEmpty()`
10 v::stringType()->notEmpty()->validate(''); // false
16 v::notEmpty()->validate(null); // false
22 v::intVal()->notEmpty()->validate(0); // false
28 v::arrayVal()->notEmpty()->validate([]); // false
34 v::stringType()->notEmpty()->validate(' '); //false
35 v::stringType()->notEmpty()->validate("\t \n \r"); //false
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/main/java/org/springframework/util/
H A DAssert.java212 public static void notEmpty(Object[] array, String message) { in notEmpty() method in Assert
225 public static void notEmpty(Object[] array) { in notEmpty() method in Assert
226notEmpty(array, "[Assertion failed] - this array must not be empty: it must contain at least 1 ele… in notEmpty()
266 public static void notEmpty(Collection collection, String message) { in notEmpty() method in Assert
279 public static void notEmpty(Collection collection) { in notEmpty() method in Assert
280 notEmpty(collection, in notEmpty()
292 public static void notEmpty(Map map, String message) { in notEmpty() method in Assert
305 public static void notEmpty(Map map) { in notEmpty() method in Assert
306notEmpty(map, "[Assertion failed] - this map must not be empty; it must contain at least one entry… in notEmpty()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/respect/validation/tests/integration/
H A Dissue-689.phpt28 ->key('name', v::length(2, 50)->notEmpty())
29 ->key('address', v::length(2, 50)->notEmpty())
31 ->keyNested('contact.name', v::length(1, 50)->notEmpty())
32 ->keyNested('contact.email', v::email()->notEmpty())
33 ->keyNested('contact.password', v::length(3, 100)->notEmpty())
34 ->keyNested('contact.position', v::length(1, 100)->notEmpty())
35 ->keyNested('contact.number', v::phone()->notEmpty())
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/mvc/condition/
H A DRequestConditionHolderTests.java40 RequestConditionHolder notEmpty = new RequestConditionHolder(new ParamsRequestCondition("name")); in combineEmpty() local
43 assertSame(notEmpty, notEmpty.combine(empty)); in combineEmpty()
44 assertSame(notEmpty, empty.combine(notEmpty)); in combineEmpty()
108 RequestConditionHolder notEmpty = new RequestConditionHolder(new ParamsRequestCondition("name")); in compareEmpty() local
111 assertEquals(-1, notEmpty.compareTo(empty, request)); in compareEmpty()
112 assertEquals(1, empty.compareTo(notEmpty, request)); in compareEmpty()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/utils/testbc/
H A Dfileblockrequestqueue.cpp38 pthread_cond_init(&notEmpty, NULL); in fileBlockRequestQueue()
43 pthread_cond_destroy(&notEmpty); in ~fileBlockRequestQueue()
65 pthread_cond_signal(&notEmpty); in push()
74 pthread_cond_broadcast(&notEmpty); in stop()
85 pthread_cond_wait(&notEmpty, &mutex); in pop()
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/utils/testbc/
H A Dfileblockrequestqueue.cpp38 pthread_cond_init(&notEmpty, NULL); in fileBlockRequestQueue()
43 pthread_cond_destroy(&notEmpty); in ~fileBlockRequestQueue()
65 pthread_cond_signal(&notEmpty); in push()
74 pthread_cond_broadcast(&notEmpty); in stop()
85 pthread_cond_wait(&notEmpty, &mutex); in pop()
/dports/net/gerbera/gerbera-1.9.2/src/config/
H A Dconfig_setup.h176 bool notEmpty = false;
181 , notEmpty(notEmpty) in ConfigSetup()
187 , notEmpty(notEmpty) in ConfigSetup()
201 bool notEmpty = true;
207 , notEmpty(notEmpty)
214 , notEmpty(notEmpty) in ConfigSetup()
289 , notEmpty(notEmpty) in ConfigSetup()
468 , notEmpty(notEmpty) in ConfigSetup()
478 , notEmpty(notEmpty) in ConfigSetup()
542 , notEmpty(notEmpty)
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Parallel/tests/QueryOperators/
H A DDefaultIfEmptyTests.cs115 ParallelQuery<T> notEmpty = labeled.Item.DefaultIfEmpty(); in DefaultIfEmpty_Empty()
116 Assert.NotEmpty(notEmpty); in DefaultIfEmpty_Empty()
117 Assert.Equal(1, notEmpty.Count()); in DefaultIfEmpty_Empty()
118 Assert.Single(notEmpty, default(T)); in DefaultIfEmpty_Empty()
130 IList<T> notEmpty = labeled.Item.DefaultIfEmpty().ToList(); in DefaultIfEmpty_Empty_NotPipelined()
131 Assert.NotEmpty(notEmpty); in DefaultIfEmpty_Empty_NotPipelined()
132 Assert.Equal(1, notEmpty.Count()); in DefaultIfEmpty_Empty_NotPipelined()
133 Assert.Single(notEmpty, default(T)); in DefaultIfEmpty_Empty_NotPipelined()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.core/src/test/java/org/springframework/util/
H A DAssertTests.java108 Assert.notEmpty((Collection) null); in assertNotEmptyWithNullCollectionThrowsException()
113 Assert.notEmpty(new ArrayList()); in assertNotEmptyWithEmptyCollectionThrowsException()
120 Assert.notEmpty(collection); in assertNotEmptyWithCollectionSunnyDay()
125 Assert.notEmpty((Map) null); in assertNotEmptyWithNullMapThrowsException()
130 Assert.notEmpty(new HashMap()); in assertNotEmptyWithEmptyMapThrowsException()
137 Assert.notEmpty(map); in assertNotEmptyWithMapSunnyDay()
/dports/sysutils/scalpel/scalpel-2.0/src/
H A Dsyncqueue.c38 pthread_cond_wait(queue->notEmpty, queue->mut); in get()
57 pthread_cond_signal(queue->notEmpty); in put()
82 q->notEmpty = (pthread_cond_t *) malloc(sizeof(pthread_cond_t)); in syncqueue_init()
83 pthread_cond_init(q->notEmpty, NULL); in syncqueue_init()
99 pthread_cond_destroy(q->notEmpty); in syncqueue_destroy()
100 free(q->notEmpty); in syncqueue_destroy()
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/respect/validation/tests/integration/rules/
H A DnotEmpty_1.phpt15 v::notEmpty()->assert($value);
16 v::notEmpty()->check($value);
20 v::notEmpty()->assert([1]);
21 v::notEmpty()->check([1]);
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/main/java/org/apache/hadoop/hbase/util/
H A DStealJobQueue.java47 private final Condition notEmpty = lock.newCondition(); field in StealJobQueue
55 notEmpty.signal(); in StealJobQueue()
72 notEmpty.signal(); in offer()
90 notEmpty.await(); in take()
113 nanos = notEmpty.awaitNanos(nanos); in poll()
/dports/www/phalcon/cphalcon-3.4.5/tests/unit/Mvc/Model/
H A DSnapshotTest.php57 expect($requests->getSnapshotData())->notEmpty();
259 expect($robots->getChangedFields())->notEmpty();
292 expect($robots->getSnapshotData())->notEmpty();
299 expect($robots->getSnapshotData())->notEmpty();
331 expect($robots->getSnapshotData())->notEmpty();
336 expect($robots->getSnapshotData())->notEmpty();
434 expect($robots->getSnapshotData())->notEmpty();
438 expect($robots->getSnapshotData())->notEmpty();
463 expect($robots->getSnapshotData())->notEmpty();
466 expect($robots->getSnapshotData())->notEmpty();
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/
H A DNonBlockingPumpReader.java30 private final Condition notEmpty; field in NonBlockingPumpReader
46 this.notEmpty = lock.newCondition(); in NonBlockingPumpReader()
77 notEmpty.await(timeout, TimeUnit.MILLISECONDS); in read()
116 notEmpty.await(); in readBuffered()
169 notEmpty.signal(); in write()
183 this.notEmpty.signalAll(); in close()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/
H A DNonBlockingPumpReader.java30 private final Condition notEmpty; field in NonBlockingPumpReader
46 this.notEmpty = lock.newCondition(); in NonBlockingPumpReader()
77 notEmpty.await(timeout, TimeUnit.MILLISECONDS); in read()
116 notEmpty.await(); in readBuffered()
169 notEmpty.signal(); in write()
183 this.notEmpty.signalAll(); in close()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/
H A DNonBlockingPumpReader.java30 private final Condition notEmpty; field in NonBlockingPumpReader
46 this.notEmpty = lock.newCondition(); in NonBlockingPumpReader()
77 notEmpty.await(timeout, TimeUnit.MILLISECONDS); in read()
116 notEmpty.await(); in readBuffered()
169 notEmpty.signal(); in write()
183 this.notEmpty.signalAll(); in close()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/
H A DNonBlockingPumpReader.java30 private final Condition notEmpty; field in NonBlockingPumpReader
46 this.notEmpty = lock.newCondition(); in NonBlockingPumpReader()
77 notEmpty.await(timeout, TimeUnit.MILLISECONDS); in read()
116 notEmpty.await(); in readBuffered()
169 notEmpty.signal(); in write()
183 this.notEmpty.signalAll(); in close()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/
H A DNonBlockingPumpReader.java30 private final Condition notEmpty; field in NonBlockingPumpReader
46 this.notEmpty = lock.newCondition(); in NonBlockingPumpReader()
77 notEmpty.await(timeout, TimeUnit.MILLISECONDS); in read()
116 notEmpty.await(); in readBuffered()
169 notEmpty.signal(); in write()
183 this.notEmpty.signalAll(); in close()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.le/share/classes/jdk/internal/org/jline/utils/
H A DNonBlockingPumpReader.java30 private final Condition notEmpty; field in NonBlockingPumpReader
46 this.notEmpty = lock.newCondition(); in NonBlockingPumpReader()
77 notEmpty.await(timeout, TimeUnit.MILLISECONDS); in read()
116 notEmpty.await(); in readBuffered()
169 notEmpty.signal(); in write()
183 this.notEmpty.signalAll(); in close()
/dports/net/mvfst/mvfst-248b2dc39bbd36863bbaa50385e8683428610009/quic/congestion_control/test/
H A DBandwidthTest.cpp52 Bandwidth notEmpty(10, 5us); in TEST_F() local
56 EXPECT_TRUE(notEmpty); in TEST_F()
60 EXPECT_GT(notEmpty, emptyBandwidth); in TEST_F()
61 EXPECT_GT(notEmpty, emptyUnit); in TEST_F()
62 EXPECT_GT(notEmpty, emptyInterval); in TEST_F()
/dports/devel/libzookeeper/apache-zookeeper-3.7.0/zookeeper-server/src/main/java/org/apache/zookeeper/util/
H A DCircularBlockingQueue.java49 private final Condition notEmpty; field in CircularBlockingQueue
63 this.notEmpty = this.lock.newCondition(); in CircularBlockingQueue()
88 this.notEmpty.signal(); in offer()
105 nanos = this.notEmpty.awaitNanos(nanos); in poll()
119 this.notEmpty.await(); in take()
169 return lock.getWaitQueueLength(this.notEmpty) > 0; in isConsumerThreadBlocked()
/dports/security/keybase/client-v5.7.1/go/flexibletable/
H A Dtable.go59 notEmpty := true
60 for notEmpty {
62 notEmpty = false
73 notEmpty = true
85 notEmpty = true
107 if notEmpty {
/dports/net/cloudquery/cloudquery-0.16.0/vendor/github.com/huandu/go-sqlbuilder/
H A Dinjection.go40 notEmpty := buf.Len() > 0
46 if notEmpty {
53 if !notEmpty {

12345678910>>...31