- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 992 for Settings (0.05 sec)
-
api/maven-api-settings/src/test/java/org/apache/maven/api/settings/SettingsTest.java
* under the License. */ package org.apache.maven.api.settings; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertNull; class SettingsTest { @Test void testSetLocalRepository() { Settings s = Settings.newInstance(); s = s.withLocalRepository("xxx");
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Apr 15 17:24:20 UTC 2023 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
.total(pager.getAllRecordCount()).status(ApiResult.Status.OK).result()); } // GET /api/admin/labeltype/setting/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/AnalyzerSettings.java
public void updateAnalyzer(final Map<String, Object> settings) { client.admin().indices().prepareCreate(analyzerSettingsIndexName).setSettings(settings).execute() .actionGet(this.settings.getIndicesTimeout()); } protected void deleteAnalyzerSettings() { client.admin().indices().prepareDelete(analyzerSettingsIndexName).execute().actionGet(settings.getIndicesTimeout()); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 19.4K bytes - Viewed (0) -
compat/maven-settings/src/main/java/org/apache/maven/settings/io/xpp3/SettingsXpp3Reader.java
* under the License. */ package org.apache.maven.settings.io.xpp3; import javax.xml.stream.XMLStreamException; import javax.xml.stream.XMLStreamReader; import java.io.IOException; import java.io.InputStream; import java.io.Reader; import org.apache.maven.settings.Settings; import org.apache.maven.settings.v4.SettingsStaxReader; import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
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: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
.settings(protwordsService.getProtwordsList(body.dictId, pager).stream() .map(protwordsItem -> createEditBody(protwordsItem, dictId)).collect(Collectors.toList())) .status(ApiResult.Status.OK).result()); } // GET /api/admin/dict/protwords/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> get$setting(final String dictId, final long id) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java
import org.apache.maven.rtinfo.RuntimeInformation; import org.apache.maven.settings.Mirror; import org.apache.maven.settings.Proxy; import org.apache.maven.settings.Server; import org.apache.maven.settings.building.SettingsProblem; import org.apache.maven.settings.crypto.DefaultSettingsDecryptionRequest; import org.apache.maven.settings.crypto.SettingsDecrypter; import org.apache.maven.settings.crypto.SettingsDecryptionResult;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 25.8K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/FlexiblePorterStemFilterFactory.java
final Settings settings) { super(indexSettings, name, settings); step1 = settings.getAsBoolean("step1", true); step2 = settings.getAsBoolean("step2", true); step3 = settings.getAsBoolean("step3", true); step4 = settings.getAsBoolean("step4", true); step5 = settings.getAsBoolean("step5", true); step6 = settings.getAsBoolean("step6", true); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.9K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/03-gopls.yml
attributes: label: "What did you expect to see?" validations: required: true - type: textarea id: editor-and-settings attributes: label: "Editor and settings" description: "Your editor and any settings you have configured (for example, your VSCode settings.json file)" validations: required: false - type: textarea id: logs attributes: label: "Logs"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri May 24 17:09:04 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/en/docs/how-to/conditional-openapi.md
## Conditional OpenAPI from settings and env vars You can easily use the same Pydantic settings to configure your generated OpenAPI and the docs UIs. For example: {* ../../docs_src/conditional_openapi/tutorial001.py hl[6,11] *} Here we declare the setting `openapi_url` with the same default of `"/openapi.json"`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:21:54 UTC 2024 - 2.3K bytes - Viewed (0)