Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for endsWith (0.15 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            String source = FileUtil.readUTF8(indexConfigFile);
            String dictionaryPath = System.getProperty("fess.dictionary.path", StringUtil.EMPTY);
            if (StringUtil.isNotBlank(dictionaryPath) && !dictionaryPath.endsWith("/")) {
                dictionaryPath = dictionaryPath + "/";
            }
            source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)//
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            }
            final String value = name.toLowerCase(Locale.ROOT);
            final Map<String, String> mapping = getQueryLanguageMappingMap();
            for (final String key : mapping.keySet()) {
                if (value.endsWith("_" + key.toLowerCase(Locale.ROOT))) {
                    final String[] values = key.split("_");
                    switch (values.length) {
                    case 1:
                        return new Locale(values[0]);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top