Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getResourceNoException (0.11 sec)

  1. fess-crawler-opensearch/src/test/java/org/codelibs/fess/crawler/util/ProfileUtil.java

                }
            }
    
            if (ResourceUtil.getResourceNoException("org/h2/Driver.class") != null) {
                list.add("h2");
            }
    
            if (ResourceUtil.getResourceNoException("com/mysql/jdbc/Driver.class") != null) {
                list.add("mysql");
            }
    
            if (ResourceUtil.getResourceNoException("oracle/jdbc/driver/OracleDriver.class") != null) {
                list.add("oracle");
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

            if (typeObj != null) {
                final String path = "suggest_indices/_" + typeObj.toString() + "/suggest_analyzer.json";
                if (ResourceUtil.getResourceNoException(path) != null) {
                    return path;
                }
            }
            return "suggest_indices/suggest_analyzer.json";
        }
    
        protected String loadIndexMapping() throws IOException {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

        }
    
        protected String getResourcePath(final String basePath, final String type, final String path) {
            final String target = basePath + "/_" + type + path;
            if (ResourceUtil.getResourceNoException(target) != null) {
                return target;
            }
            return basePath + path;
        }
    
        public void addMapping(final String index, final String docType, final String indexName) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Oct 20 02:08:03 UTC 2024
    - 86.1K bytes
    - Viewed (0)
Back to top