- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 40 for NOTNULL (0.19 sec)
-
src/main/resources/fess_message_es.properties
constraints.Future.message = {item} debe ser una fecha futura. constraints.Max.message = {item} debe ser menor o igual que {value}. constraints.Min.message = {item} debe ser mayor o igual que {value}. constraints.NotNull.message = {item} es obligatorio. constraints.Null.message = {item} debe ser nulo. constraints.Past.message = {item} debe ser una fecha pasada. constraints.Pattern.message = {item} no coincide con "{regexp}".
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/resources/fess_message_zh_TW.properties
constraints.Digits.message = {item} 必須是數字。(預期: <數字>.<數字>) constraints.Future.message = {item} 必須是未來的日期。 constraints.Max.message = {item} 必須小於或等於 {value}。 constraints.Min.message = {item} 必須大於或等於 {value}。 constraints.NotNull.message = {item} 不能為空。 constraints.Null.message = {item} 必須為 null。 constraints.Past.message = {item} 必須是過去的日期。 constraints.Pattern.message = {item} 不匹配 "{regexp}"。 constraints.Size.message = {item} 的大小必須在 {min} 到 {max} 個字元之間。
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 11.1K bytes - Viewed (0) -
migrator/migrator.go
return m.Dialector.DataTypeOf(field) } // FullDataTypeOf returns field's db full data type func (m Migrator) FullDataTypeOf(field *schema.Field) (expr clause.Expr) { expr.SQL = m.DataTypeOf(field) if field.NotNull { expr.SQL += " NOT NULL" } if field.HasDefaultValue && (field.DefaultValueInterface != nil || field.DefaultValue != "") { if field.DefaultValueInterface != nil {
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Jun 06 02:35:01 UTC 2025 - 29.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionQuery.java
} } @FunctionalInterface public interface ConditionOptionCall<OP extends QueryBuilder> { /** * @param op The option of condition to be set up. (NotNull) */ void callback(OP op); } @FunctionalInterface public interface BoolCall<CQ extends EsAbstractConditionQuery> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionQuery.java
} } @FunctionalInterface public interface ConditionOptionCall<OP extends QueryBuilder> { /** * @param op The option of condition to be set up. (NotNull) */ void callback(OP op); } @FunctionalInterface public interface BoolCall<CQ extends EsAbstractConditionQuery> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
assertEquals("{constraints.Max.message}", FessMessages.CONSTRAINTS_Max_MESSAGE); assertEquals("{constraints.Min.message}", FessMessages.CONSTRAINTS_Min_MESSAGE); assertEquals("{constraints.NotNull.message}", FessMessages.CONSTRAINTS_NotNull_MESSAGE); assertEquals("{constraints.Null.message}", FessMessages.CONSTRAINTS_Null_MESSAGE); assertEquals("{constraints.Past.message}", FessMessages.CONSTRAINTS_Past_MESSAGE);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 28.2K 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}는 필수 항목입니다. constraints.Null.message = {item}는 null이어야 합니다. constraints.Past.message = {item}는 과거의 값이어야 합니다. constraints.Pattern.message = {item}가 "{regexp}"와 일치하지 않습니다.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/resources/fess_message_ja.properties
constraints.Digits.message = {item} は数値でなければなりません。(期待値: <数値>.<数値>) constraints.Future.message = {item}は将来の値にする必要があります。 constraints.Max.message = {item} は {value} 以下にしてください。 constraints.Min.message = {item} は {value} 以上にしてください。 constraints.NotNull.message = {item} は未入力です。 constraints.Null.message = {item} は null でなければなりません。 constraints.Past.message = {item} は過去の値にする必要があります。 constraints.Pattern.message = {item} が 「{regexp}」 に一致しません。
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_LOGIN_UPDATE = "{labels.login.update}"; /** * Assert the property is not null. * @param property The value of the property. (NotNull) */ protected void assertPropertyNotNull(String property) { if (property == null) { String msg = "The argument 'property' for message should not be null.";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0) -
api/go1.txt
pkg database/sql/driver, type Execer interface { Exec } pkg database/sql/driver, type Execer interface, Exec(string, []Value) (Result, error) pkg database/sql/driver, type NotNull struct pkg database/sql/driver, type NotNull struct, Converter ValueConverter pkg database/sql/driver, type Null struct pkg database/sql/driver, type Null struct, Converter ValueConverter
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)