Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for lang_sv (0.04 sec)

  1. src/main/resources/fess_indices/_aws/fess/doc.json

            "lang_sv": {
              "match": "*_sv",
              "mapping": {
                "type": "text",
                "analyzer": "swedish_analyzer"
              }
            }
          },
          {
            "lang_ta": {
              "match": "*_ta",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_te": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/_cloud/fess/doc.json

            "lang_sv": {
              "match": "*_sv",
              "mapping": {
                "type": "text",
                "analyzer": "swedish_analyzer"
              }
            }
          },
          {
            "lang_ta": {
              "match": "*_ta",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_te": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/doc.json

            "lang_sv": {
              "match": "*_sv",
              "mapping": {
                "type": "text",
                "analyzer": "swedish_analyzer"
              }
            }
          },
          {
            "lang_ta": {
              "match": "*_ta",
              "mapping": {
                "type": "text",
                "analyzer": "empty_analyzer"
              }
            }
          },
          {
            "lang_te": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  5. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

                return new MockSuggestDeleteResponse();
            }
    
            public void indexFromSearchWord(String searchWord, String[] fields, String[] tags, String[] roles, int weight, String[] langs) {
                // Mock implementation
            }
    
            public void deleteElevateWord(String word, boolean apply) {
                // Mock implementation
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            final StringBuilder buf = new StringBuilder(255);
            try {
                final RequestParameter parameter = RequestParameter.parse(request);
                final String[] langs = searchHelper.getLanguages(request, parameter);
    
                final SuggestHelper suggestHelper = ComponentUtil.getSuggestHelper();
                final SuggestRequestBuilder builder = suggestHelper.suggester().suggest();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String ONLINE_HELP_SUPPORTED_LANGS = "online.help.supported.langs";
    
        /** The key of the configuration. e.g. https://discuss.codelibs.org/c/Fess{lang}/ */
        String FORUM_LINK = "forum.link";
    
        /** The key of the configuration. e.g. en,ja */
        String FORUM_SUPPORTED_LANGS = "forum.supported.langs";
    
        /** The key of the configuration. e.g. 0 */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top