Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for _english_ (0.03 sec)

  1. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

        public void test_matchLocale() {
            assertFalse(labelTypeHelper.matchLocale(Locale.ENGLISH, Locale.JAPANESE));
            assertFalse(labelTypeHelper.matchLocale(Locale.SIMPLIFIED_CHINESE, Locale.TRADITIONAL_CHINESE));
    
            assertTrue(labelTypeHelper.matchLocale(null, Locale.ROOT));
            assertTrue(labelTypeHelper.matchLocale(Locale.ENGLISH, Locale.ROOT));
            assertTrue(labelTypeHelper.matchLocale(Locale.ROOT, Locale.ROOT));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

            return super.godHandPrologue(runtime);
        }
    
        /**
         * Converts validation messages to a localized string representation for API responses.
         * Uses the request locale if available, otherwise defaults to English.
         *
         * @param validationMessagesLambda lambda function that adds validation messages
         * @return concatenated string of localized validation messages separated by spaces
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/LocaleUtil.java

         *
         * @return the default locale
         */
        public static Locale getDefault() {
            if (defaultLocaleSupplier != null) {
                return defaultLocaleSupplier.get();
            }
            return Locale.ENGLISH;
        }
    
        /**
         * Sets the default locale supplier.
         *
         * @param localeSupplier
         *            the supplier for the default locale
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                    if (req.getAttribute(LastaWebKey.USER_LOCALE_KEY) instanceof Locale locale) {
                        return locale;
                    }
                    return Locale.ENGLISH;
                }).orElse(Locale.ENGLISH).getLanguage() + "\">";
            }
            return "</html>";
        }
    
        /**
         * Checks if a label with the specified key exists in the current request's label map.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

                    return StringUtil.EMPTY;
                }
            });
            getMockRequest().setLocale(Locale.ENGLISH);
            assertNull(systemHelper.getForumLink());
        }
    
        public void test_getHelpLink() {
            getMockRequest().setLocale(Locale.ENGLISH);
            assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

            final Collection<String> values = queryMap.values();
            if (values.stream().anyMatch(s -> s.startsWith(filetypeField))) {
                final ResourceBundle resources = ResourceBundle.getBundle("fess_label", Locale.ENGLISH);
                final String[] fileTypes = ComponentUtil.getFileTypeHelper().getTypes();
                for (final String fileType : fileTypes) {
                    final String value = filetypeField + ":" + fileType;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

        }
    
        public void test_determineAlias_returnsEmpty() {
            // Test with various locales
            OptionalThing<String> result = provider.determineAlias(Locale.ENGLISH);
            assertFalse(result.isPresent());
    
            result = provider.determineAlias(Locale.JAPANESE);
            assertFalse(result.isPresent());
    
            result = provider.determineAlias(Locale.GERMAN);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java

         * @return the searcher name
         */
        public String getName() {
            if (name == null) {
                name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH);
            }
            return name;
        }
    
        /**
         * Executes a search operation with the specified parameters.
         * This method must be implemented by concrete searcher classes.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

        }
    
        public void test_detectLanguage_withoutDetector() {
            // Without a real detector, this would cause NullPointerException
            try {
                languageHelper.detectLanguage("This is English text");
                fail("Should throw NullPointerException without detector");
            } catch (NullPointerException e) {
                // Expected
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess.json

              "type": "pattern_replace",
              "pattern":"(.*)",
              "replacement":""
            }
          },
          "filter": {
            "stemmer_en_filter": {
              "type": "stemmer",
              "name": "english"
            },
            "english_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}en/stemmer_override.txt"
            },
            "possessive_stemmer_en_filter": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
Back to top