Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 69 for hangs (0.05 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                String[] langs = (String[]) propMap.get(QUERY_DEFAULT_LANGUAGES);
                if (langs == null) {
                    langs = split(getQueryDefaultLanguages(), ",").get(stream -> stream.map(String::trim).toArray(n -> new String[n]));
                    propMap.put(QUERY_DEFAULT_LANGUAGES, langs);
    
                }
                return normalizeQueryLanguages(langs);
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 88.2K bytes
    - Viewed (0)
  2. ADDING_NEW_LANGUAGE.md

    ```
    
    **Optional configurations:**
    
    If you create online help documentation:
    ```properties
    online.help.supported.langs=ja,sv  # Add your language
    ```
    
    If you have forum support:
    ```properties
    forum.supported.langs=en,ja,sv  # Add your language
    ```
    
    ### 4. Regenerate Auto-Generated Java Classes
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/da/stopwords.txt

    som
    på
    de
    med
    han
    af
    for
    ikke
    der
    var
    mig
    sig
    men
    et
    har
    om
    vi
    min
    havde
    ham
    hun
    nu
    over
    da
    fra
    du
    ud
    sin
    dem
    os
    op
    man
    hans
    hvor
    eller
    hvad
    skal
    selv
    her
    alle
    vil
    blev
    kunne
    ind
    når
    være
    dog
    noget
    ville
    jo
    deres
    efter
    ned
    skulle
    denne
    end
    dette
    mit
    også
    under
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 564 bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/SuggesterBuilderTest.java

                @Override
                public void init() throws IOException {
    
                }
    
                @Override
                public List<String> convert(String text, final String field, String... langs) throws IOException {
                    return null;
                }
            };
    
            final Normalizer normalizer = (text, field, lang) -> null;
    
            final Suggester suggester = Suggester.builder()
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Sat Nov 01 13:29:47 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * @param terminationTimeout how long to wait for the executor to finish before terminating the
       *     JVM
       * @return an unmodifiable version of the input which will not hang the JVM
       * @since 28.0 (but only since 33.4.0 in the Android flavor)
       */
      @J2ktIncompatible
      @GwtIncompatible // TODO
      public static ExecutorService getExitingExecutorService(
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Wed Oct 08 18:55:33 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

            String[] roles = new String[] { "role1" };
            String[] langs = new String[] { "ja" };
    
            SuggestAnalyzer analyzer = suggester.settings().analyzer().new DefaultContentsAnalyzer();
            SuggestItem item = defaultContentsParser.parseSearchWords(words, readings, fields, tags, roles, 10, createDefaultReadingConverter(),
                    createDefaultNormalizer(), analyzer, langs);
    
            assertNotNull(item);
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/normalizer/ICUNormalizer.java

                throw new IllegalArgumentException("Invalid transliterator ID: " + transliteratorId, e);
            }
        }
    
        @Override
        public String normalize(final String text, final String field, final String... langs) {
            if (text == null) {
                return null;
            }
            return transliterator.transliterate(text);
        }
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:23:01 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/TestThread.java

       * don't hang around during other tests.)
       */
      @Override
      public void tearDown() throws Exception {
        try {
          Thread.class.getMethod("stop").invoke(this);
          join();
        } catch (ReflectiveOperationException e) {
          // stop() threw or did not exist. Don't join() the thread, which might hang forever.
        }
    
        if (uncaughtThrowable != null) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 21:00:51 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                if (virtualHost != null) {
                    tags.add(virtualHost);
                }
    
                if (sb.length() > 0) {
                    final String[] langs = searchLog.getLanguages() == null ? new String[] {} : searchLog.getLanguages().split(",");
                    stream(searchLog.getRoles()).of(stream -> stream.forEach(role -> roles.add(role)));
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

       * don't hang around during other tests.)
       */
      @Override
      public void tearDown() throws Exception {
        try {
          Thread.class.getMethod("stop").invoke(this);
          join();
        } catch (ReflectiveOperationException e) {
          // stop() threw or did not exist. Don't join() the thread, which might hang forever.
        }
    
        if (uncaughtThrowable != null) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 21:00:51 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top