- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 191 for lowercase (0.07 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/StringExtensions.kt
*/ package gradlebuild.basics import java.util.Locale fun String.toLowerCase(): String = lowercase(Locale.US) fun String.toUpperCase(): String = uppercase(Locale.US) fun String.capitalize(): String = replaceFirstChar { it.uppercase(Locale.US) } fun String.decapitalize(): String =
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 961 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.data_config.json
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 484 bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess.json
"truncate20_filter", "lowercase", "arabic_stop", "arabic_normalization", "arabic_keywords", "arabic_override", "arabic_stemmer" ] }, "armenian_analyzer": { "tokenizer": "standard", "filter": [ "truncate20_filter", "lowercase", "armenian_stop",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Mar 23 12:38:28 UTC 2021 - 117.3K bytes - Viewed (0) -
src/main/resources/fess_indices/_cloud/fess.json
"truncate20_filter", "lowercase", "arabic_stop", "arabic_normalization", "arabic_keywords", "arabic_override", "arabic_stemmer" ] }, "armenian_analyzer": { "tokenizer": "standard", "filter": [ "truncate20_filter", "lowercase", "armenian_stop",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Feb 27 09:26:16 UTC 2021 - 117.3K bytes - Viewed (0) -
guava/src/com/google/common/base/Ascii.java
} /** * If the argument is a {@linkplain #isLowerCase(char) lowercase ASCII character}, returns the * uppercase equivalent. Otherwise returns the argument. */ public static char toUpperCase(char c) { return isLowerCase(c) ? (char) (c ^ CASE_MASK) : c; } /** * Indicates whether {@code c} is one of the twenty-six lowercase ASCII alphabetic characters
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 02 13:50:22 UTC 2024 - 21.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/Os.kt
package common enum class Arch(val suffix: String, val nameOnLinuxWindows: String, val nameOnMac: String) { AMD64("64bit", "amd64", "x86_64"), AARCH64("aarch64", "aarch64", "aarch64"); fun asName() = name.lowercase().toCapitalized() } enum class Os( val agentRequirement: String, val androidHome: String, val jprofilerHome: String, val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 3.5K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-MediaTypeCommon.kt
val typeSubtype: MatchResult = TYPE_SUBTYPE.matchAtPolyfill(this, 0) ?: throw IllegalArgumentException("No subtype found for: \"$this\"") val type = typeSubtype.groupValues[1].lowercase() val subtype = typeSubtype.groupValues[2].lowercase() val parameterNamesAndValues = mutableListOf<String>() var s = typeSubtype.range.last + 1 while (s < length) { val parameter = PARAMETER.matchAtPolyfill(this, s)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Challenge.kt
@get:JvmName("scheme") val scheme: String, authParams: Map<String?, String>, ) { /** * Returns the auth params, including [realm] and [charset] if present, but as * strings. The map's keys are lowercase and should be treated case-insensitively. */ @get:JvmName("authParams") val authParams: Map<String?, String> /** Returns the protection space. */ @get:JvmName("realm") val realm: String?
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashCodeTest.java
} public void testToString() { byte[] data = new byte[] {127, -128, 5, -1, 14}; assertEquals("7f8005ff0e", HashCode.fromBytes(data).toString()); assertEquals("7f8005ff0e", base16().lowerCase().encode(data)); } public void testHashCode_nulls() throws Exception { sanityTester().testNulls(); } public void testHashCode_equalsAndSerializable() throws Exception {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 13.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashCodeTest.java
} public void testToString() { byte[] data = new byte[] {127, -128, 5, -1, 14}; assertEquals("7f8005ff0e", HashCode.fromBytes(data).toString()); assertEquals("7f8005ff0e", base16().lowerCase().encode(data)); } public void testHashCode_nulls() throws Exception { sanityTester().testNulls(); } public void testHashCode_equalsAndSerializable() throws Exception {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 13.1K bytes - Viewed (0)