Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isReloadable (0.09 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java

                }
            } else {
                reader = new StringReader("");
            }
    
            return reader;
        }
    
        public boolean isReloadable() {
            return reloadableFile != null;
        }
    
        public long getLastModified() {
            return lastModified;
        }
    
        protected static Analyzer getAnalyzer(final boolean ignoreCase) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

            this.n = n;
            this.delimiters = delimiters;
            this.expand = expand;
            this.ignoreCase = ignoreCase;
            if (synonymLoader != null) {
                if (synonymLoader.isReloadable()) {
                    this.synonymLoader = synonymLoader;
                    this.lastModified = synonymLoader.getLastModified();
                } else {
                    this.synonymLoader = null;
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top