- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 147 for Gang (0.02 sec)
-
CronExpression.java
L16:package org.codelibs.fess.validation; L17: L18:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L19:import static java.lang.annotation.ElementType.CONSTRUCTOR; L20:import static java.lang.annotation.ElementType.FIELD; L21:import static java.lang.annotation.ElementType.METHOD; L22:import static java.lang.annotation.ElementType.PARAMETER; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24: L25:import java.lang.annotation.Documented; L26:import java.lang.annotation.Retention;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.5K bytes -
CustomSize.java
L16:package org.codelibs.fess.validation; L17: L18:import static java.lang.annotation.ElementType.ANNOTATION_TYPE; L19:import static java.lang.annotation.ElementType.CONSTRUCTOR; L20:import static java.lang.annotation.ElementType.FIELD; L21:import static java.lang.annotation.ElementType.METHOD; L22:import static java.lang.annotation.ElementType.PARAMETER; L23:import static java.lang.annotation.RetentionPolicy.RUNTIME; L24: L25:import java.lang.annotation.Documented; L26:import java.lang.annotation.Retention;...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.8K bytes -
LanguageHelperTest.java
ript(doc, "aaa").getIdOrCode()); L37: L38: doc.put("lang", "ja"); L39: assertEquals("aaa;ctx._source.title_ja=ctx._source.title;ctx._source.content_ja=ctx._source.content", L40: languageHelper.createScript(doc, "aaa").getIdOrCode()); L41: } L42: L43: public void test_getReindexScriptSource() { L44: assertEquals( L45: "if(ctx._source.lang!=null){ctx._source['title_'+ctx._source.lang]=ctx._source.title;ctx._source['content_'+ctx._source.lang...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 1.7K bytes -
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 -
AbstractDataStoreTest.java
tEngineFactory; L28:import org.codelibs.fess.unit.UnitFessTestCase; L29:import org.codelibs.fess.util.ComponentUtil; L30:import org.lastaflute.di.core.factory.SingletonLaContainerFactory; L31: L32:import groovy.lang.Binding; L33:import groovy.lang.GroovyClassLoader; L34:import groovy.lang.GroovyShell; L35: L36:public class AbstractDataStoreTest extends UnitFessTestCase { L37: public AbstractDataStore dataStore; L38: L39: @Override L40: public void setUp() throws Exception { L41: super.setUp();...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.1K 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 -
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 -
DocBoostMatcherTest.java
tEngineFactory; L25:import org.codelibs.fess.unit.UnitFessTestCase; L26:import org.codelibs.fess.util.ComponentUtil; L27:import org.lastaflute.di.core.factory.SingletonLaContainerFactory; L28: L29:import groovy.lang.Binding; L30:import groovy.lang.GroovyClassLoader; L31:import groovy.lang.GroovyShell; L32: L33:public class DocBoostMatcherTest extends UnitFessTestCase { L34: L35: @Override L36: public void setUp() throws Exception { L37: super.setUp(); L38: ScriptEngineFactory...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 4.6K bytes