Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Scharf (0.35 sec)

  1. src/main/webapp/js/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess.json

              "max_gram": 1,
              "token_chars": []
            },
            "unigram_search_tokenizer": {
              "type": "ngram",
              "min_gram": 1,
              "max_gram": 1,
              "token_chars": []
            },
            "bigram_tokenizer": {
              "type": "ngram",
              "min_gram": 2,
              "max_gram": 2,
              "token_chars": []
            }
          },
          "analyzer": {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String CRAWLER_DOCUMENT_SPACE_CHARS = "crawler.document.space.chars";
    
        /** The key of the configuration. e.g. u002eu06d4u2e3cu3002 */
        String CRAWLER_DOCUMENT_FULLSTOP_CHARS = "crawler.document.fullstop.chars";
    
        /** The key of the configuration. e.g. UTF-8 */
        String CRAWLER_CRAWLING_DATA_ENCODING = "crawler.crawling.data.encoding";
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  4. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                    return "u0020u3000";
                }
            };
    
            int[] chars = fessConfig.getCrawlerDocumentSpaceCharsAsArray();
            assertEquals(2, chars.length);
            assertEquals(32, chars[0]);
            assertEquals(12288, chars[1]);
        }
    
        public void test_getCrawlerDocumentFullstopCharsAsArray() {
            FessProp.propMap.clear();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java

    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * Utility class for parsing CSV text
     */
    public final class KuromojiCSVUtil {
        private static final char QUOTE = '"';
    
        private static final char COMMA = ',';
    
        private static final Pattern QUOTE_REPLACE_PATTERN = Pattern.compile("^\"([^\"]+)\"$");
    
        private static final String ESCAPED_QUOTE = "\"\"";
    
        private KuromojiCSVUtil() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    crawler.document.max.symbol.term.size=10
    crawler.document.duplicate.term.removed=false
    crawler.document.space.chars=u0009u000Au000Bu000Cu000Du001Cu001Du001Eu001Fu0020u00A0u1680u180Eu2000u2001u2002u2003u2004u2005u2006u2007u2008u2009u200Au200Bu200Cu202Fu205Fu3000uFEFFuFFFDu00B6
    crawler.document.fullstop.chars=u002eu06d4u2e3cu3002
    crawler.crawling.data.encoding=UTF-8
    crawler.web.protocols=http,https
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java

                        list.add(sb.toString());
                        sb = new StringBuilder();
                    }
                    pos += separator.length();
                    continue;
                }
    
                char ch = s.charAt(pos);
                pos++;
                if (ch == '\\') {
                    sb.append(ch);
                    if (pos >= end) {
                        break; // ERROR, or let it go?
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

    import com.google.common.cache.CacheBuilder;
    
    public class PopularWordHelper {
        private static final Logger logger = LogManager.getLogger(PopularWordHelper.class);
    
        protected static final char CACHE_KEY_SPLITTER = '\n';
    
        protected Cache<String, List<String>> cache;
    
        protected FessConfig fessConfig;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

        private String unescape(final String s) {
            if (s.indexOf('\\') >= 0) {
                final StringBuilder sb = new StringBuilder();
                for (int i = 0; i < s.length(); i++) {
                    final char ch = s.charAt(i);
                    if (ch == '\\' && i < s.length() - 1) {
                        i++;
                        sb.append(s.charAt(i));
                    } else {
                        sb.append(ch);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

        }
    
        protected String generateId(final String urlId) {
            final StringBuilder encodedBuf = new StringBuilder(urlId.length() + 100);
            for (int i = 0; i < urlId.length(); i++) {
                final char c = urlId.charAt(i);
                if (c >= 'a' && c <= 'z' //
                        || c >= 'A' && c <= 'Z' //
                        || c >= '0' && c <= '9' //
                        || c == '.' //
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.6K bytes
    - Viewed (1)
Back to top