Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 226 for 1000 (0.74 sec)

  1. src/main/resources/fess.xml

    		</property>
    	</component>
    	<component name="searchLogHelper" class="org.codelibs.fess.helper.SearchLogHelper">
    		<!-- 
    		<property name="userCheckInterval">5 * 60 * 1000</property>
    		<property name="userInfoCacheSize">1000</property>
    		 -->
    	</component>
    	<component name="crawlingConfigHelper" class="org.codelibs.fess.helper.CrawlingConfigHelper">
    	</component>
    	<component name="documentHelper" class="org.codelibs.fess.helper.DocumentHelper">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 01 06:48:48 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    public interface FessTransformer {
    
        Map<String, String> parentEncodingMap = Collections.synchronizedMap(new LruHashMap<>(1000));
    
        FessConfig getFessConfig();
    
        Logger getLogger();
    
        default String getHost(final String u) {
            if (StringUtil.isBlank(u)) {
                return StringUtil.EMPTY; // empty
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                            if (r.getTotalShards() != r.getSuccessfulShards() && fessConfig.isQueryTimeoutLogging()) {
                                // partial results
                                final StringBuilder buf = new StringBuilder(1000);
                                buf.append("[SEARCH TIMEOUT] {\"exec_time\":").append(execTime)//
                                        .append(",\"request\":").append(searchRequestBuilder.toString())//
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/XmlUtil.java

            private final Map<String, Object> dataMap = new HashMap<>();
    
            private String fieldName;
    
            private final StringBuilder buffer = new StringBuilder(1000);
    
            @Override
            public void startDocument() {
                dataMap.clear();
            }
    
            @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/fileauth/EditForm.java

    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 = 255)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/keymatch/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    /**
     * @author codelibs
     * @author jflute
     */
    public class EditForm extends CreateForm {
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Size(max = 255)
        public String updatedBy;
    
        @ValidateTypeFailure
        public Long updatedTime;
    
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.1K 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;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            suggester.indexer().addElevateWord(elevateWord, true);
            suggester.refresh();
    
            Thread.sleep(1000);
            ZonedDateTime threshold = ZonedDateTime.now();
            Thread.sleep(1000);
    
            suggester.indexer().indexFromDocument(new Map[] { Collections.singletonMap(field, (Object) "検索エンジン") });
            suggester.refresh();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            final Bean bean = new Bean();
            BeanUtil.copyMapToBean(map, bean, converter(new NumberConverter("#,##0")));
            assertThat(bean.aaa, is((Object) "1,000"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testCopyMapToBean_converter2() throws Exception {
            final Map<String, Object> map = newHashMap();
            map.put("aaa", "1,000");
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                final String path = entry.getKey();
                if (servletPath.startsWith(path)) {
                    req.setCharacterEncoding(entry.getValue());
                    final StringBuilder locationBuf = new StringBuilder(1000);
                    final String contextPath = servletContext.getContextPath();
                    if (StringUtil.isNotBlank(contextPath) && !"/".equals(contextPath)) {
                        locationBuf.append(contextPath);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top