- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 5,455 for Languages (0.1 sec)
-
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
/** * Returns the conditions. * * @return The conditions. */ public abstract Map<String, String[]> getConditions(); /** * Returns the languages. * * @return The languages. */ public abstract String[] getLanguages(); /** * Returns the geo info. * * @return The geo info. */ public abstract GeoInfo getGeoInfo();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ExtensibleEnumProvider.java
* to the specific provider interface being implemented. * <p> * Example implementation for a custom language provider: * <pre> * public class CustomLanguageProvider implements LanguageProvider { * public Collection<Language> provides() { * return Arrays.asList( * language("kotlin"), * language("scala") * ); * } * } * </pre> *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
} else { searchLog.setAccessType(Constants.SEARCH_LOG_ACCESS_TYPE_WEB); } final Object languages = req.getAttribute(Constants.REQUEST_LANGUAGES); if (languages != null) { searchLog.setLanguages(StringUtils.join((String[]) languages, ",")); } else { searchLog.setLanguages(StringUtil.EMPTY); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.3K bytes - Viewed (0) -
docs/en/docs/fastapi-people.md
These users are the **Top Translation Reviewers**. 🕵️ I only speak a few languages (and not very well 😅). So, the reviewers are the ones that have the [**power to approve translations**](contributing.md#translations){.internal-link target=_blank} of the documentation. Without them, there wouldn't be documentation in several other languages. <div class="user-list user-list-center">
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Tue Jan 28 20:34:56 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java
} /** * Language-specific analyzer normalizer. */ protected class LangAnalyzerNormalizer implements Normalizer { /** * The language used for normalization. */ protected final String lang; /** * Constructs a LangAnalyzerNormalizer with the specified language. *
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 4K bytes - Viewed (0) -
docs/en/docs/contributing.md
#### Request a New Language Let's say that you want to request translations for a language that is not yet translated, not even some pages. For example, Latin. If there is no discussion for that language, you can start by requesting the new language. For that, you can follow these steps: * Create a new discussion following the template.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
if (searchField.equals(field)) { return true; } } return false; } /** * Gets the query languages from the current request. * @return An optional containing the query languages array, or empty if not available. */ protected OptionalThing<String[]> getQueryLanguages() { return LaRequestUtil.getOptionalRequest()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.6K bytes - Viewed (0) -
docs/en/docs/advanced/generate-clients.md
This makes it easy to generate up-to-date **documentation**, client libraries (<abbr title="Software Development Kits">**SDKs**</abbr>) in multiple languages, and **testing** or **automation workflows** that stay in sync with your code. In this guide, you'll learn how to generate a **TypeScript SDK** for your FastAPI backend.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 10.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java
* @param normalizer the normalizer to use for normalizing the search words * @param analyzer the analyzer to use for analyzing the search words * @param langs the array of languages associated with the search words * @return a SuggestItem created from the given search words and associated data */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
} return converter.convert(text, field); } /** * Language-specific analyzer converter. */ protected class LangAnalyzerConverter implements ReadingConverter { /** Language. */ protected final String lang; /** * Constructor. * @param lang Language */ protected LangAnalyzerConverter(final String lang) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 6.7K bytes - Viewed (0)