Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for analyze (0.04 sec)

  1. src/main/java/org/codelibs/core/lang/GenericsUtil.java

         * and adds them to the given map.
         *
         * @param clazz
         *            the class to analyze
         * @param type
         *            the type to analyze
         * @param map
         *            the map to which the type variables and type arguments are added
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                    } else {
                        logger.warn("[{}][{}] Failed to analyze a last text(size:{}). {}", field, lang, buf.length(), e.getMessage());
                    }
                }
            }
            return tokens;
        }
    
        /**
         * Analyze text by reading.
         * @param analyzer Analyzer
         * @param field Field
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java

            // Test that multiple analyzer instances work independently
            SuggestAnalyzer analyzer1 = new TestSuggestAnalyzer();
            SuggestAnalyzer analyzer2 = new TestSuggestAnalyzer();
    
            String text = "test text";
            String field = "content";
            String lang = "en";
    
            List<AnalyzeToken> tokens1 = analyzer1.analyze(text, field, lang);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java

    import java.util.List;
    
    import org.codelibs.fess.suggest.settings.AnalyzerSettings;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.core.common.Strings;
    import org.opensearch.transport.client.Client;
    
    import com.ibm.icu.text.Transliterator;
    
    /**
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java

            protected final String contentsAnalyzer;
            /** Contents reading analyzer name. */
            protected final String contentsReadingAnalyzer;
    
            /**
             * Constructor.
             * @param readingAnalyzer Reading analyzer name
             * @param readingTermAnalyzer Reading term analyzer name
             * @param normalizeAnalyzer Normalize analyzer name
             * @param contentsAnalyzer Contents analyzer name
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 26.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java

    import java.util.List;
    
    import org.codelibs.fess.suggest.settings.AnalyzerSettings;
    import org.codelibs.fess.suggest.settings.SuggestSettings;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
    import org.opensearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
    import org.opensearch.transport.client.Client;
    
    /**
     * AnalyzerNormalizer is a class that implements the Normalizer interface.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MimeTypeHelper.java

         * @param is the input stream to analyze
         * @param filename the filename to help determine the content type
         * @return the detected content type
         */
        String getContentType(InputStream is, String filename);
    
        /**
         * Determines the content type of the given input stream using the provided parameters.
         * @param is the input stream to analyze
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java

            assertTrue(analyzerNames.contains(settings.analyzer().getNormalizeAnalyzerName("", "")));
    
            for (final String lang : settings.analyzer().SUPPORTED_LANGUAGES) {
                assertTrue(analyzerNames.contains(settings.analyzer().getContentsAnalyzerName("", lang)));
                assertTrue(analyzerNames.contains(settings.analyzer().getContentsReadingAnalyzerName("", lang)));
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  9. .github/workflows/codeql-analysis.yml

      CodeQL-Build:
        permissions:
          actions: read  # for github/codeql-action/init to get workflow details
          contents: read  # for actions/checkout to fetch code
          security-events: write  # for github/codeql-action/analyze to upload SARIF results
        runs-on: ubuntu-latest
    
        strategy:
          fail-fast: false
          matrix:
            # Override automatic language detection by changing the below list
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Thu Aug 21 23:08:02 UTC 2025
    - 4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/query/parser/QueryParser.java

            this.defaultField = defaultField;
        }
    
        /**
         * Sets the analyzer used to analyze query terms.
         *
         * @param analyzer the analyzer to use
         */
        public void setAnalyzer(final Analyzer analyzer) {
            this.analyzer = analyzer;
        }
    
        /**
         * Sets whether to allow leading wildcards in query terms.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.2K bytes
    - Viewed (0)
Back to top