- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 503 for settings2 (0.35 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
/** * Updates the analyzer settings. * @param settings The settings to update. */ public void updateAnalyzer(final Map<String, Object> settings) { client.admin() .indices() .prepareCreate(analyzerSettingsIndexName) .setSettings(settings) .execute() .actionGet(this.settings.getIndicesTimeout()); } /**Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 26.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/normalizer/AnalyzerNormalizer.java
* The settings for suggestions. */ private final SuggestSettings settings; /** * Constructs an AnalyzerNormalizer with the specified client and settings. * * @param client the OpenSearch client * @param settings the settings for suggestions */ public AnalyzerNormalizer(final Client client, final SuggestSettings settings) { this.client = client; this.settings = settings;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:23:01 UTC 2025 - 4K bytes - Viewed (0) -
src/main/webapp/js/admin/adminlte.min.js.map
}\n }\n\n load() {\n this._addOverlay()\n this._settings.onLoadStart.call($(this))\n\n $.get(this._settings.source, this._settings.params, response => {\n if (this._settings.loadInContent) {\n if (this._settings.sourceSelector !== '') {\n response = $(response).find(this._settings.sourceSelector).html()\n }\n\n this._parent.find(this._settings.content).html(response)\n }\n\n this._settings.onLoadDone.call($(this), response)\n this._removeOverlay()\n...
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 132.4K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiTokenizerFactory.java
super(indexSettings, settings, name); mode = getMode(settings); userDictionary = getUserDictionary(env, settings); discartPunctuation = settings.getAsBoolean("discard_punctuation", true); nBestCost = settings.getAsInt(NBEST_COST, -1); nBestExamples = settings.get(NBEST_EXAMPLES); }
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java
} private static void initializeSuggestSettings() throws Exception { // Create suggester and get settings Suggester suggester = Suggester.builder().build(client, "test"); settings = suggester.settings(); // Store analyzer settings storeAnalyzerSettings(); } private static void storeAnalyzerSettings() throws Exception {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
} @Test @DisplayName("Test with various Configuration implementations") void testWithDifferentConfigurations() throws Exception { // Test with different configuration settings Properties props = new Properties(); props.setProperty("jcifs.smb.client.maxVersion", "SMB302"); Configuration customConfig = new PropertyConfiguration(props);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java
String indexName = "test-index"; Client client = runner.client(); SuggestSettings settings = suggester.settings(); int num = 10000; addDocument(indexName, client, num); ESSourceReader reader = new ESSourceReader(client, settings, indexName); reader.setScrollSize(1000); int count = 0;Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 13:04:17 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* * This method implements lazy initialization with synchronization to ensure * the authenticator is only created once. It configures the authenticator * with the appropriate SPNEGO settings and marks initialization as complete. * * @return The configured SPNEGO authenticator instance * @throws SsoLoginException if SPNEGO initialization fails */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
src/test/java/org/codelibs/fess/suggest/settings/AnalyzerSettingsTest.java
assertTrue(analyzerNames.contains(settings.analyzer().getNormalizeAnalyzerName("", ""))); for (final String lang : settings.analyzer().SUPPORTED_LANGUAGES) { assertTrue(analyzerNames.contains(settings.analyzer().getContentsAnalyzerName("", lang))); assertTrue(analyzerNames.contains(settings.analyzer().getContentsReadingAnalyzerName("", lang)));
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Sun Nov 23 13:04:17 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/converter/AnalyzerConverter.java
private final SuggestSettings settings; /** Analyzer settings. */ protected final AnalyzerSettings analyzerSettings; /** Transliterator for Hiragana to Katakana. */ protected final Transliterator transliterator = Transliterator.getInstance("Hiragana-Katakana"); /** * Constructor. * @param client OpenSearch client * @param settings Suggest settings */Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 17 14:28:21 UTC 2025 - 6.7K bytes - Viewed (0)