- Sort Score
- Result 10 results
- Languages All
Results 801 - 810 of 6,333 for strings (0.09 sec)
-
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/merge/MavenSettingsMerger.java
* @param recessiveSourceLevel */ public void merge(Settings dominant, Settings recessive, String recessiveSourceLevel) { if (dominant == null || recessive == null) { return; } recessive.setSourceLevel(recessiveSourceLevel); List<String> dominantActiveProfiles = dominant.getActiveProfiles(); List<String> recessiveActiveProfiles = recessive.getActiveProfiles();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.24.md
- Changes the kubectl --validate flag from a bool to a string that accepts the values {true, strict, warn, false,...
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Aug 24 00:02:43 UTC 2023 - 473.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderRequest.java
import static org.apache.maven.api.services.BaseRequest.nonNull; /** * Collects settings that control the building of effective settings. */ @Experimental @Immutable public interface SettingsBuilderRequest { @Nonnull Session getSession(); /** * Gets the installation settings source. * * @return the installation settings source or {@code null} if none */ @Nonnull
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 09:25:53 UTC 2024 - 7.9K 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)));
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
public static final String MAVEN_STYLE_ERROR_NAME = "error"; public static final String MAVEN_STYLE_SUCCESS_NAME = "success"; public static final String MAVEN_STYLE_FAILURE_NAME = "failure"; public static final String MAVEN_STYLE_STRONG_NAME = "strong"; public static final String MAVEN_STYLE_MOJO_NAME = "mojo"; public static final String MAVEN_STYLE_PROJECT_NAME = "project";
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:24:08 UTC 2024 - 14K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/StopTokenPrefixFilterFactory.java
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.1K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt
} /** * When [protocols][MockWebServer.protocols] include [HTTP_2][okhttp3.Protocol], this pushes * [settings] before writing the response. */ fun settings(settings: Settings) = apply { this.settings.clear() this.settings.merge(settings) } /** * Attempts to perform a web socket upgrade on the connection.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Tue Jan 23 14:31:42 UTC 2024 - 13.3K bytes - Viewed (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt
fun withPush(promise: PushPromise) = apply { promises.add(promise) } fun withSettings(settings: Settings) = apply { this.settings = settings } fun withWebSocketUpgrade(listener: WebSocketListener) = apply { status = "HTTP/1.1 101 Switching Protocols" setHeader("Connection", "Upgrade")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java
settingsRequest.setSystemProperties(request.getSystemProperties()); return build(settingsRequest); } private File getFile(String pathPattern, String basedirSysProp, String altLocationSysProp) { // ------------------------------------------------------------------------------------- // Alright, here's the justification for all the regexp wizardry below...
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
final StringBuilder sb = new StringBuilder(100); final List<String> fields = new ArrayList<>(); final List<String> tags = new ArrayList<>(); final List<String> roles = new ArrayList<>(); for (final Pair<String, String> searchFieldLog : searchLog.getSearchFieldLogList()) { final String name = searchFieldLog.getFirst(); if (contentFieldNameSet.contains(name)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.1K bytes - Viewed (0)