- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,217 for settings (0.04 sec)
-
src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java
import org.opensearch.common.settings.Settings; import org.opensearch.common.unit.TimeValue; import org.opensearch.env.Environment; import org.opensearch.index.analysis.Analysis; public class SynonymLoader { private File reloadableFile = null; private final Analyzer analyzer; private final Settings settings; private final boolean expand;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 6.7K bytes - Viewed (1) -
compat/maven-compat/src/main/java/org/apache/maven/settings/MavenSettingsBuilder.java
String ALT_USER_SETTINGS_XML_LOCATION = "org.apache.maven.user-settings"; String ALT_GLOBAL_SETTINGS_XML_LOCATION = "org.apache.maven.global-settings"; String ALT_LOCAL_REPOSITORY_LOCATION = "maven.repo.local"; Settings buildSettings(MavenExecutionRequest request) throws IOException, XmlPullParserException; /** * @return a <code>Settings</code> object from the user settings file. * @throws IOException if any
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiBaseFormFilterFactory.java
import org.opensearch.common.settings.Settings; import org.opensearch.env.Environment; import org.opensearch.index.IndexSettings; import org.opensearch.index.analysis.AbstractTokenFilterFactory; public class KuromojiBaseFormFilterFactory extends AbstractTokenFilterFactory { public KuromojiBaseFormFilterFactory(IndexSettings indexSettings, Environment environment, String name, Settings settings) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
.setIndex(suggester.settings().analyzer().getAnalyzerSettingsIndexName()) .setSource(analyzerMapping) .setRefreshPolicy(WriteRequest.RefreshPolicy.WAIT_UNTIL) .execute() .actionGet(); suggester.settings().analyzer().init(); SuggestSettings settings = suggester.settings();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiPartOfSpeechFilterFactory.java
private final Set<String> stopTags = new HashSet<>(); public KuromojiPartOfSpeechFilterFactory(IndexSettings indexSettings, Environment env, String name, Settings settings) { super(indexSettings, name, settings); List<String> wordList = Analysis.parseWordList(env, settings, "stoptags", s -> s); if (wordList != null) { stopTags.addAll(wordList); } else {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/SuggesterBuilder.java
/** * Sets the suggest settings. * @param settings The suggest settings. * @return This builder instance. */ public SuggesterBuilder settings(final SuggestSettings settings) { this.settings = settings; settingsBuilder = null; return this; } /** * Sets the suggest settings builder. * @param settingsBuilder The suggest settings builder.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 6K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/maven-system.properties
# # Settings # # Define the default three levels for settings. # The '-is' flag will override the 'maven.installation.settings' property. # The '-ps' flag will override the 'maven.project.settings' property. # The '-s' flag will override the 'maven.user.settings' property. maven.installation.settings = ${maven.installation.conf}/settings.xml maven.project.settings = ${maven.project.conf}/settings.xml
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NumberConcatenationFilterFactory.java
public NumberConcatenationFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) { super(indexSettings, name, settings); final String suffixWordsPath = settings.get("suffix_words_path"); if (suffixWordsPath != null) { final File suffixWordsFile = environment.configDir().resolve(suffixWordsPath).toFile();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
requestBody.put("crud_mode", 2); if (setting.containsKey(idKey)) { requestBody.put(idKey, setting.get(idKey)); } final Map<String, Object> doc = new HashMap<>(); doc.put("doc_id", setting.get("doc_id")); doc.put("url", setting.get("url_link")); doc.put("title", setting.get("title")); doc.put("role", "Rguest");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 12 02:18:38 UTC 2025 - 4.5K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# If you want to include other schemas in generating target, # you should specify the map of included schemas. # Additional schemas have original settings apart from the main schema. # The settings are objectTypeTargetList, tableExceptList, # tableTargetList, and columnExceptMap. # They have the same specification as ones of the main schema.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0)