- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 79 for Gang (0.03 sec)
-
QueryCommand.java
).floatValue(); L87: getQueryLanguages().ifPresent(langs -> stream(langs).of(stream -> stream.forEach(lang -> { L88: defaultQuery.add( L89: builder.apply(fessConfig.getIndexFieldTitle() + "_" + lang, fessConfig.getQueryBoostTitleLangAsDecimal().floatValue())); L90: defaultQuery.add(builder.apply(fessConfig.getIndexFieldContent() + "_" + lang, L91: fessConfig.getQueryBoostContentLangAsDecimal().floatValue())); L92: if (...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 6.5K bytes -
module.xml
L32: <param name="module.zip.version" value="${opensearch.version}" /> L33: </antcall> L34: <!-- lang-expression --> L35: <antcall target="install.module"> L36: <param name="repo.url" value="${maven.release.repo.url}" /> L37: <param name="module.groupId" value="org/codelibs/opensearch/module" /> L38: <param name="module.name.prefix" value="" /> L39: <param name="module.name" value="lang-expression" /> L40: <param name="module.version" value="${opensearch.version}" /> L41: <param n...github.com/codelibs/fess/module.xmlFri Oct 25 12:43:59 UTC 2024 4.5K bytes -
GroovyEngine.java
L23:import org.codelibs.fess.exception.JobProcessingException; L24:import org.codelibs.fess.script.AbstractScriptEngine; L25:import org.lastaflute.di.core.factory.SingletonLaContainerFactory; L26: L27:import groovy.lang.Binding; L28:import groovy.lang.GroovyClassLoader; L29:import groovy.lang.GroovyShell; L30: L31:public class GroovyEngine extends AbstractScriptEngine { L32: private static final Logger logger = LogManager.getLogger(GroovyEngine.class); L33: L34: @Override L35: public Object...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 2K bytes -
SystemHelper.java
locale = ComponentUtil.getRequestManager().getUserLocale(); L296: if (locale != null) { L297: final String lang = locale.getLanguage(); L298: if (ComponentUtil.getFessConfig().isOnlineHelpSupportedLang(lang)) { L299: target = lang.toUpperCase(Locale.ROOT); L300: } L301: } L302: return url.replaceFirst("\\{lang\\}", target == null ? "EN" : target); L303: } L304: L305: public String getHelpLink(final String name) { L306: ...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 17 12:10:08 UTC 2024 27.2K bytes -
README.md
_message_en.properties) L148: L149:For search/index analyzer, if [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) contains lang\_[lang] for your language, please modify the analyzer for your language. For more details about Analyzers, see the [OpenSearch documentation](https://opensearch.org/docs/latest/analyzers/search-analyzers/). L150: L151:We welcome pull requests for your language. L152: L153:### Translations L154: L155:- [日本語 (Japanese)...github.com/codelibs/fess/README.mdSat Oct 12 07:19:47 UTC 2024 7.3K bytes -
CrawlingConfig.java
limitations under the License. L15: */ L16:package org.codelibs.fess.es.config.exentity; L17: L18:import java.util.Map; L19:import java.util.function.Supplier; L20: L21:import org.apache.http.auth.UsernamePasswordCredentials; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.Constants; L24:import org.codelibs.fess.crawler.client.CrawlerClientFactory; L25:import org.codelibs.fess.crawler.client.ftp.FtpClient; L26:import org.codelibs.fess.crawler.client.http.HcHttpClient; L27:import...github.com/codelibs/fess/src/main/java/org/code...Thu Oct 24 13:01:38 UTC 2024 5.5K bytes -
SearchHelper.java
langSet = new HashSet<>(); L258: for (final String lang : params.getLanguages()) { L259: if (StringUtil.isNotBlank(lang) && lang.length() < 1000) { L260: if (Constants.ALL_LANGUAGES.equalsIgnoreCase(lang)) { L261: langSet.add(Constants.ALL_LANGUAGES); L262: } else { L263: final String normalizeLang = systemHelper.normalizeLang(lang); L264: if (normalizeLang != null) {...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 19.1K bytes -
FessConfig.java
/** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/{version}/admin/ */ L1450: String ONLINE_HELP_BASE_LINK = "online.help.base.link"; L1451: L1452: /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/{version}/install/install.html */ L1453: String ONLINE_HELP_INSTALLATION = "online.help.installation"; L1454: L1455: /** The key of the configuration. e.g. https://fess.codelibs.org/{lang}/eol.html */ L1456: String ONLINE_HELP_EOL = "online.help.eol";...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
search.jsp
<la:message key="labels.searchoptions_menu_lang" /> <a L65: href="#searchOptions" class="badge badge-primary" L66: data-toggle="control-options"> <c:if test="${empty lang}"> L67: <la:message key="labels.searchoptions_all" /> L68: </c:if> <c:if test="${!empty lang}"> L69: <c:forEach var="sLang" items="${lang}"> L70: <c:forEach var="item" items="${langItems}"> L71: <c:if test="${item.value==sLang}">${f:h(item.label)}</c:if> L72: </c:forEach> L73: </c:forEach>...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 6.6K bytes -
search.jsp
<la:message key="labels.searchoptions_menu_lang" /> <a L65: href="#searchOptions" class="badge badge-primary" L66: data-toggle="control-options"> <c:if test="${empty lang}"> L67: <la:message key="labels.searchoptions_all" /> L68: </c:if> <c:if test="${!empty lang}"> L69: <c:forEach var="sLang" items="${lang}"> L70: <c:forEach var="item" items="${langItems}"> L71: <c:if test="${item.value==sLang}">${f:h(item.label)}</c:if> L72: </c:forEach> L73: </c:forEach>...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Oct 26 01:07:52 UTC 2024 6.6K bytes