Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 262 for MAX (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

    import java.util.HashMap;
    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class GoForm {
        @Required
        @Size(max = 100)
        public String docId;
    
        @Size(max = 10000)
        @Required
        public String rt;
    
        public String hash;
    
        @Required
        public String queryId;
    
        public Integer order;
    
        // for error page
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/cbean/ca/bs/BsSearchLogCA.java

                opLambda.callback(builder);
            }
        }
    
        public void setHitCount_Max() {
            setHitCount_Max(null);
        }
    
        public void setHitCount_Max(ConditionOptionCall<MaxAggregationBuilder> opLambda) {
            setHitCount_Max("hitCount", opLambda);
        }
    
        public void setHitCount_Max(String name, ConditionOptionCall<MaxAggregationBuilder> opLambda) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 115.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                                                int timeout ) throws IOException {
            Integer nid = null;
            int max = NbtAddress.NBNS.length;
    
            if (max == 0)
                max = 1; /* No WINs, try only bcast addr */
    
            synchronized( response ) {
                while (max-- > 0) {
                    try {
                        synchronized( LOCK ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 17.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/lang/ko.js

    합니다.",badCreditCard:"신용카드번호를 정확하지 않습니다.",badCVV:"CVV 번호가 정확하지 않습니다.",wrongFileDim:"잘못된 이미지 크기 ,",imageTooTall:"이미지 길이가 ",imageTooTallEnd:" 보다 길어야 합니다.",imageTooWide:"이미지 넓이가 ",imageTooWideEnd:" 보다 넓어야 합니다.",imageTooSmall:"이미지 크기가 너무 작습니다.",min:"min",max:"max",imageRatioNotAccepted:"이미지 비율이 맞지 않습니다."}})}(a,window)});...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 3K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_ru.properties

    constraints.Digits.message      = {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected).
    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.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri May 20 12:12:28 GMT 2022
    - 10.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java

    import org.apache.logging.log4j.core.config.plugins.validation.constraints.Required;
    
    public class TagForm {
    
        @Required
        public String path;
    
        @Required
        @Size(max = 100)
        public String name;
    
        public Map<String, String> tags = new HashMap<>();
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java

    import java.util.HashMap;
    import java.util.Map;
    
    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class ThumbnailForm {
    
        @Required
        @Size(max = 100)
        public String docId;
    
        @Required
        public String queryId;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

     ...
    CSS
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 7.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "xxx:aaa");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/role/CreateForm.java

    /**
     * @author shinsuke
     * @author Keiichi Watanabe
     */
    public class CreateForm {
    
        @ValidateTypeFailure
        public Integer crudMode;
    
        @Required
        @Size(max = 100)
        public String name;
    
        public Map<String, String> attributes = new HashMap<>();
    
        public void initialize() {
            crudMode = CrudMode.CREATE;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.2K bytes
    - Viewed (0)
Back to top