Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for constraints (0.24 sec)

  1. schema/constraint_test.go

    	}
    	constraints := user.ParseUniqueConstraints()
    
    	results := map[string]schema.UniqueConstraint{
    		"uni_user_uniques_name1": {
    			Name:  "uni_user_uniques_name1",
    			Field: &schema.Field{Name: "Name1", Unique: true},
    		},
    	}
    	for k, result := range results {
    		v, ok := constraints[k]
    		if !ok {
    			t.Errorf("Failed to found unique constraint %v from parsed constraints %+v", k, constraints)
    		}
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Sun Feb 04 07:49:19 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.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.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  3. .idea/uiDesigner.xml

            </default-constraints>
          </item>
          <item class="javax.swing.JPasswordField" icon="/com/intellij/uiDesigner/icons/passwordField.png" removable="false" auto-create-binding="true" can-attach-label="true">
            <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
              <preferred-size width="150" height="-1" />
            </default-constraints>
          </item>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Oct 24 15:06:04 GMT 2013
    - 9.5K bytes
    - Viewed (0)
  4. 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.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  5. schema/constraint.go

    	Name       string
    	Constraint string // length(phone) >= 10
    	*Field
    }
    
    func (chk *CheckConstraint) GetName() string { return chk.Name }
    
    func (chk *CheckConstraint) Build() (sql string, vars []interface{}) {
    	return "CONSTRAINT ? CHECK (?)", []interface{}{clause.Column{Name: chk.Name}, clause.Expr{SQL: chk.Constraint}}
    }
    
    // ParseCheckConstraints parse schema check constraints
    Go
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Mar 18 07:33:54 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ko.properties

    constraints.NotBlank.message = {item}은 미입력입니다.
    constraints.NotEmpty.message = {item}은 미입력입니다.
    constraints.ParametersScriptAssert.message = 스크립트 식「{script}」이 true가 없습니다.
    constraints.Range.message = {item}는 {min}에서 {max}의 범위에 있어야합니다.
    constraints.SafeHtml.message = {item}은 위험한 HTML 콘텐츠가 포함되어 있습니다.
    constraints.ScriptAssert.message = 스크립트 식 「{script}」이 true가 없습니다.
    constraints.URL.message = {item}은 유효한 URL이 없습니다.
    constraints.Required.message = {item}이 필요합니다.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} must be in the future. */
        public static final String CONSTRAINTS_Future_MESSAGE = "{constraints.Future.message}";
    
        /** The key of the message: {item} must be less than or equal to {value}. */
        public static final String CONSTRAINTS_Max_MESSAGE = "{constraints.Max.message}";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ja.properties

    constraints.NotBlank.message = {item} は未入力です。
    constraints.NotEmpty.message = {item} は未入力です。
    constraints.ParametersScriptAssert.message = スクリプト式「{script}」がtrueではありません。
    constraints.Range.message = {item} は {min} から {max} の範囲にある必要があります。
    constraints.SafeHtml.message = {item} は危険な HTML コンテンツを含んでいます。
    constraints.ScriptAssert.message = スクリプト式「{script}」がtrueではありません。
    constraints.URL.message = {item} は有効なURLではありません。
    constraints.Required.message = {item} が必要です。
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/CreateForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.relatedcontent;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.validation.Required;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

     */
    package org.codelibs.fess.app.web.admin.webconfig;
    
    import javax.validation.constraints.Max;
    import javax.validation.constraints.Min;
    import javax.validation.constraints.Size;
    
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
Back to top