Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 194 of 194 for extends (0.2 sec)

  1. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

         * @param field the field to be used for keyword extraction
         * @return an array of keywords extracted from the query string, or an empty array if the number of keywords exceeds the maximum allowed or if any keyword exceeds the maximum length
         */
        public static String[] parseQuery(final String q, final String field) {
            final List<String> keywords = getKeywords(q, new String[] { field });
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 17.4K bytes
    - Viewed (1)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

            case POST -> doPost(request.getUrl());
            default -> throw new CrawlerSystemException(request.getMethod() + " method is not supported.");
            };
        }
    
        /**
         * Checks if the content length exceeds the maximum allowed length.
         * @param responseData The response data.
         */
        protected void checkMaxContentLength(final ResponseData responseData) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (10)
  3. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

        }
    
        @Test
        public void testCreateSuggestTextIdWithLongText() {
            // Test text that exceeds maximum length after encoding
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 500; i++) {
                sb.append("0123456789");
            }
            String longText = sb.toString();
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/x-tika-visio-ooxml">
        <sub-class-of type="application/x-tika-ooxml"/>
        <_comment>Visio OOXML File</_comment>
      </mime-type>
    
      <!-- Older StarOffice formats extend up the Microsoft OLE2 format -->
      <mime-type type="application/x-tika-staroffice">
        <sub-class-of type="application/x-tika-msoffice"/>
      </mime-type>
    
      <mime-type type="application/x-uc2-compressed">
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
Back to top