- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 42 for notNull (0.09 sec)
-
guava-tests/test/com/google/common/base/PredicatesTest.java
} public void testNotNull_apply() { Predicate<@Nullable Integer> notNull = Predicates.notNull(); assertFalse(notNull.apply(null)); assertTrue(notNull.apply(1)); } public void testNotNull_equality() { new EqualsTester() .addEqualityGroup(Predicates.notNull(), Predicates.notNull()) .addEqualityGroup(Predicates.isNull()) .testEquals(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 32.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java
*/ public void setHostname(String hostname) { registerVariable("hostname", hostname); } /** * Set the value of jobname, used in parameter comment. <br> * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty. * @param jobname The parameter value of jobname. (NotNull) */
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
* @param propertyKey The key of the property. (NotNull) * @return The value of found property. (NotNull: if not found, exception) * @throws ConfigPropertyNotFoundException When the property is not found. */ String get(String propertyKey); /** * Is the property true? * @param propertyKey The key of the property which is boolean type. (NotNull)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/MoreObjects.java
* throws a {@link NullPointerException}. * * <p>To find the first non-null element in an iterable, use {@code Iterables.find(iterable, * Predicates.notNull())}. For varargs, use {@code Iterables.find(Arrays.asList(a, b, c, ...), * Predicates.notNull())}, static importing as necessary. * * <p><b>Note:</b> if {@code first} is represented as an {@link Optional}, this can be
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 10 15:41:27 UTC 2024 - 16.1K bytes - Viewed (0) -
schema/field.go
AutoIncrement: utils.CheckTruth(tagSetting["AUTOINCREMENT"]), HasDefaultValue: utils.CheckTruth(tagSetting["AUTOINCREMENT"]), NotNull: utils.CheckTruth(tagSetting["NOT NULL"], tagSetting["NOTNULL"]), Unique: utils.CheckTruth(tagSetting["UNIQUE"]), Comment: tagSetting["COMMENT"], AutoIncrementIncrement: DefaultAutoIncrementIncrement, }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 32K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java
@FunctionalInterface public interface ConditionOptionCall<OP extends AbstractAggregationBuilder<?>> { /** * @param op The option of condition to be set up. (NotNull) */ void callback(OP op); } @FunctionalInterface public interface OperatorCall<CA extends EsAbstractConditionAggregation> { void callback(CA query); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java
@FunctionalInterface public interface ConditionOptionCall<OP extends AbstractAggregationBuilder<?>> { /** * @param op The option of condition to be set up. (NotNull) */ void callback(OP op); } @FunctionalInterface public interface OperatorCall<CA extends EsAbstractConditionAggregation> { void callback(CA query); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/resources/fess_message_ru.properties
constraints.Future.message = {item} must be in the future. constraints.Max.message = {item} must be less than or equal to {value}. constraints.Min.message = {item} must be greater than or equal to {value}. constraints.NotNull.message = {item} may not be null. constraints.Null.message = {item} must be null. constraints.Past.message = {item} must be in the past. constraints.Pattern.message = {item} must match "{regexp}".
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri May 20 12:12:28 UTC 2022 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java
@FunctionalInterface public interface ConditionOptionCall<OP extends AbstractAggregationBuilder<?>> { /** * @param op The option of condition to be set up. (NotNull) */ void callback(OP op); } @FunctionalInterface public interface OperatorCall<CA extends EsAbstractConditionAggregation> { void callback(CA query); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.4K bytes - Viewed (0) -
src/main/resources/fess_message_ko.properties
constraints.Digits.message = {item}은 숫자값이어야 합니다. (기대 값 : <숫자값>.<숫자값>) constraints.Future.message = {item}은 미래에 있어야 합니다. constraints.Max.message = {item}는 {value} 다음에 하십시오. constraints.Min.message = {item}는 {value} 이상으로 하십시오. constraints.NotNull.message = {item}은 null이면 안됩니다. constraints.Null.message = {item}는 null이 아니면 안됩니다. constraints.Past.message = {item}은 과거의 값으로 해야 합니다. constraints.Pattern.message = {item}가 「{regexp}」 에 일치하지 않습니다.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 07 06:11:30 UTC 2018 - 11.1K bytes - Viewed (0)