Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 311 for Size (0.3 sec)

  1. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

            assertEquals(0, roleSet.size());
    
            encrypted = false;
            value = "role1";
            roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted);
            assertEquals(0, roleSet.size());
    
            encrypted = false;
            value = "role1,role2";
            roleSet = decodedRoleList(roleQueryHelperImpl, value, encrypted);
            assertEquals(0, roleSet.size());
    
            encrypted = false;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java

        public Integer crudMode;
    
        @Required
        @Size(max = 100)
        public String name;
    
        @Required
        @Size(max = 100)
        @Pattern(regexp = "^[a-zA-Z0-9_]+$")
        public String value;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String includedPaths;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String excludedPaths;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    page.user.max.fetch.size=1000
    page.role.max.fetch.size=1000
    page.group.max.fetch.size=1000
    page.crawling.info.param.max.fetch.size=100
    page.crawling.info.max.fetch.size=1000
    page.data.config.max.fetch.size=100
    page.web.config.max.fetch.size=100
    page.file.config.max.fetch.size=100
    page.duplicate.host.max.fetch.size=1000
    page.failure.url.max.fetch.size=1000
    page.favorite.log.max.fetch.size=100
    page.file.auth.max.fetch.size=100
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java

        public Integer crudMode;
    
        @Required
        @Size(max = 100)
        public String name;
    
        @Required
        @Size(max = 100)
        public String target;
    
        @Size(max = 100)
        @CronExpression
        public String cronExpression;
    
        @Required
        @Size(max = 100)
        public String scriptType;
    
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String scriptData;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

            final int size = docs.size();
            if (size == 0) {
                return docs; // empty
            }
            int fromIndex = startPosition;
            if (fromIndex >= size) {
                fromIndex = size - 1;
            }
            int toIndex = startPosition + pageSize;
            if (toIndex >= size) {
                toIndex = size;
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

            if (synonymItemList == null) {
                reload(null);
            }
    
            if (offset >= synonymItemList.size() || offset < 0) {
                return new PagingList<>(Collections.<SynonymItem> emptyList(), offset, size, synonymItemList.size());
            }
    
            int toIndex = offset + size;
            if (toIndex > synonymItemList.size()) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java

        @Required
        @Size(max = 100)
        public String term;
    
        @Required
        @CustomSize(maxKey = "form.admin.max.input.size")
        public String query;
    
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer maxSize;
    
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        @Size(max = 1000)
        public String virtualHost;
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/main/webapp/css/style.css

    	bottom: 0;
    	height: 4em;
    	position: absolute;
    	border-top: 1px solid;
    	padding-top: 1em;
    }
    
    h1,
    h2,
    h3 {
    	line-height: 32px;
    }
    
    h1 {
    	font-size: 30px;
    }
    
    h2 {
    	font-size: 24px;
    }
    
    h3 {
    	font-size: 18px;
    }
    
    .form-control {
    	border-radius: 0px;
    }
    
    legend{
    	display: none;
    }
    
    /* header */
    
    #searchOptions {
    	position: fixed;
    	z-index: 10;
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jun 02 11:39:35 GMT 2022
    - 2K bytes
    - Viewed (2)
  9. src/test/java/org/codelibs/fess/it/CrudTestBase.java

        }
    
        protected Map<String, Object> createSearchBody(final int size) {
            final Map<String, Object> searchBody = new HashMap<>();
            searchBody.put("size", size);
            return searchBody;
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/EditForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author Keiichi Watanabe
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 1000)
        public String updatedBy;
    
        @ValidateTypeFailure
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
Back to top