- Sort Score
- Num 10 results
- Language All
Results 21 - 28 of 28 for setLanguage (0.18 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/RepositoryUtils.java
? new DefaultArtifactType( id, handler.getExtension(), handler.getClassifier(), handler.getLanguage(), handler.isAddedToClasspath(), handler.isIncludesDependencies()) : null; } public static Dependency toDependency(
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Sep 04 18:33:16 GMT 2025 - 15.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
@Override String id(); /** * Returns the dependency type language. * * @return the language of this type, never {@code null}. */ @Nonnull Language getLanguage(); /** * Get the file extension of artifacts of this type. * * @return the file extension, never {@code null}. */ @Nonnull String getExtension(); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 6.5K bytes - Click Count (0) -
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. * * @param value the label key to check
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return null; } String target = null; final Locale locale = ComponentUtil.getRequestManager().getUserLocale(); if (locale != null) { final String lang = locale.getLanguage(); if (ComponentUtil.getFessConfig().isOnlineHelpSupportedLang(lang)) { target = lang.toUpperCase(Locale.ROOT); } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
Packaging getPackaging(); /** * {@return the project language}. It is by default determined by {@link #getPackaging()}. * * @see #getPackaging() */ @Nonnull default Language getLanguage() { return getPackaging().language(); } /** * {@return the project POM artifact}, which is the artifact of the POM of this project. Every project have a POM
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* @return the localized page path */ public String getPagePath(final String page) { final Locale locale = ComponentUtil.getRequestManager().getUserLocale(); final String lang = locale.getLanguage(); final String country = locale.getCountry(); final String pathLC = getLocalizedPagePath(page, lang, country); final String pLC = pageCacheMap.get(pathLC); if (pLC != null) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 52.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return StringUtil.EMPTY_STRINGS; } return normalizeQueryLanguages(Collections.list(locales).stream().map(locale -> { final String language = locale.getLanguage(); final String country = locale.getCountry(); if (StringUtil.isNotBlank(language)) { if (StringUtil.isNotBlank(country)) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java
*/ protected String getLanguageInstruction() { final Locale locale = getUserLocale(); final String language = locale.getLanguage(); if ("en".equals(language)) { return StringUtil.EMPTY; } return "IMPORTANT: You MUST respond in " + locale.getDisplayLanguage(Locale.ENGLISH) + "."; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 72K bytes - Click Count (0)