- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 81 for gang (0.03 sec)
-
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 -
README.md
ess_message_en.properties) L148: L149:Für den Such-/Index-Analyser: Wenn [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) lang\_[lang] für Ihre Sprache enthält, passen Sie bitte den Analyser für Ihre Sprache an. Weitere Informationen zu Analysatoren finden Sie in der [OpenSearch-Dokumentation](https://opensearch.org/docs/latest/analyzers/search-analyzers/). L150: L151:Wir begrüßen Pull-Requests für Ihre Sprache. L152: L153:## Unterstützt von L154:...github.com/codelibs/fess/docs/de/README.mdSat Oct 12 07:19:47 UTC 2024 7.6K bytes -
README.md
_message_en.properties) L147: L148:对于搜索/索引分析器,如果 [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) 包含您语言的 lang\_[lang],请为您的语言修改分析器。有关分析器的更多详细信息,请参阅 [OpenSearch 文档](https://opensearch.org/docs/latest/analyzers/search-analyzers/)。 L149: L150:我们欢迎您的语言的 Pull Request。 L151: L152:## 技术支持 L153: L154:* [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI 容器 L155:* [LastaFlute](https://github.com/lastaflute/lastaflute "LastaFlute"): Web 框架...github.com/codelibs/fess/docs/zh-CN/README.mdSat Oct 12 07:19:47 UTC 2024 6.8K bytes -
SuggestHelper.java
java.util.List; L30:import java.util.Map; L31:import java.util.Set; L32:import java.util.function.Consumer; L33: L34:import org.apache.logging.log4j.LogManager; L35:import org.apache.logging.log4j.Logger; L36:import org.codelibs.core.lang.StringUtil; L37:import org.codelibs.core.lang.ThreadUtil; L38:import org.codelibs.core.misc.Pair; L39:import org.codelibs.fess.Constants; L40:import org.codelibs.fess.es.client.SearchEngineClient; L41:import org.codelibs.fess.es.config.exbhv.BadWordBhv; L42:import org.c...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 18.1K bytes -
README.md
ources/fess_message_en.properties) L147: L148:검색/인덱스 분석기와 관련해서, [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json)이 귀하의 언어에 대한 lang\_[lang]을 포함하는 경우, 해당 언어에 맞게 분석기를 수정하십시오. 분석기에 대한 자세한 내용은 [OpenSearch 문서](https://opensearch.org/docs/latest/analyzers/search-analyzers/)를 참조하십시오. L149: L150:귀하의 언어로 된 풀 리퀘스트를 환영합니다. L151: L152:## 제공된 기술 L153: L154:* [Lasta Di](https://github.com/lastaflute/lasta-di "Lasta Di"): DI 컨테이너 L155:* [LastaFlute](https://g...github.com/codelibs/fess/docs/ko/README.mdSat Oct 12 07:19:47 UTC 2024 7.8K bytes -
StemmerOverrideItem.java
express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.dict.stemmeroverride; L17: L18:import java.util.Objects; L19: L20:import org.codelibs.core.lang.StringUtil; L21:import org.codelibs.fess.dict.DictionaryItem; L22: L23:public class StemmerOverrideItem extends DictionaryItem { L24: private final String input; L25: L26: private final String output; L27: L28: private String newInput; L29:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 2.7K bytes -
CharMappingItem.java
governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.dict.mapping; L17: L18:import java.util.Arrays; L19:import java.util.Objects; L20: L21:import org.apache.commons.lang3.StringUtils; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.dict.DictionaryItem; L24: L25:public class CharMappingItem extends DictionaryItem { L26: private final String[] inputs; L27: L28: private final String output; L29: L30: private String[] newInputs; L31:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 3.4K bytes -
OpenIdConnectCredential.java
L17: L18:import static org.codelibs.core.stream.StreamUtil.split; L19:import static org.codelibs.core.stream.StreamUtil.stream; L20: L21:import java.util.HashSet; L22:import java.util.Map; L23:import java.util.Set; L24: L25:import org.codelibs.core.lang.StringUtil; L26:import org.codelibs.fess.entity.FessUser; L27:import org.codelibs.fess.helper.SystemHelper; L28:import org.codelibs.fess.util.ComponentUtil; L29:import org.codelibs.fess.util.DocumentUtil; L30:import org.lastaflute.web.login.creden...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 4.2K bytes -
README.md
_message_en.properties) L148: L149:Para el analizador de búsqueda/índices, si [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) contiene lang\_[lang] para tu idioma, por favor modifica el analizador para tu idioma. Para más detalles sobre los analizadores, consulta la [documentación de OpenSearch](https://opensearch.org/docs/latest/analyzers/search-analyzers/). L150: L151:Damos la bienvenida a pull requests para tu idioma. L152: L153:## Impulsado...github.com/codelibs/fess/docs/es/README.mdSat Oct 12 07:19:47 UTC 2024 7.6K bytes -
ViewHelper.java
L525: L526: return "index.jsp"; L527: } L528: L529: private String getLocalizedPagePath(final String page, final String lang, final String country) { L530: final StringBuilder buf = new StringBuilder(100); L531: buf.append("/WEB-INF/view/").append(page); L532: if (StringUtil.isNotBlank(lang)) { L533: buf.append('_').append(lang); L534: if (StringUtil.isNotBlank(country)) { L535: buf.append('_').append(country); L536: }...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:20:39 UTC 2024 40.2K bytes