Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Scharf (0.18 sec)

  1. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/lang/tr.js

    girdiniz",badPlRegon:"Geçersiz Polonya ticari kimlik numarası girdiniz",badreCaptcha:"Lütfen bot olmadığınızı doğrulayın",passwordComplexityStart:"Şifreniz en az ",passwordComplexitySeparator:", ",passwordComplexityUppercaseInfo:" büyük harf",passwordComplexityLowercaseInfo:" küçük harf",passwordComplexitySpecialCharsInfo:" özel karakter",passwordComplexityNumericCharsInfo:" sayısal karakter",passwordComplexityEnd:" içermelidir"}})}(a,window)});...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 3.1K bytes
    - Viewed (0)
  4. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return path;
            }
    
            try {
                final StringBuilder buf = new StringBuilder(path.length() + 100);
                for (int i = 0; i < path.length(); i++) {
                    final char c = path.charAt(i);
                    if (CharUtil.isUrlChar(c) || c == '^' || c == '{' || c == '}' || c == '|' || c == '\\') {
                        buf.append(c);
                    } else {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (1)
  7. src/main/webapp/js/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  8. 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 Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  9. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

    import org.dbflute.mail.send.supplement.SMailPostingDiscloser;
    
    public class NotificationHelper {
        private static final Logger logger = LogManager.getLogger(NotificationHelper.class);
    
        protected static final char LF = '\n';
    
        public void send(final CardView cardView, final SMailPostingDiscloser discloser) {
            sendToSlack(cardView, discloser);
            sendToGoogleChat(cardView, discloser);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            }
    
            // normalize
            final StringBuilder buf = new StringBuilder(1000);
            for (int i = 0; i < configPath.length(); i++) {
                final char c = configPath.charAt(i);
                if (c == '\\') {
                    buf.append('/');
                } else if (c == ' ') {
                    buf.append("%20");
                } else if (CharUtil.isUrlChar(c)) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
Back to top