- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 138 for uppercase (0.07 seconds)
-
android/guava/src/com/google/common/base/Ascii.java
/** * Returns a copy of the input string in which all {@linkplain #isUpperCase(char) uppercase ASCII * characters} have been converted to lowercase. All other characters are copied without * modification. */ public static String toLowerCase(String string) { int length = string.length(); for (int i = 0; i < length; i++) { if (isUpperCase(string.charAt(i))) { char[] chars = string.toCharArray();Created: 2025-12-26 12:43 - Last Modified: 2025-03-17 20:26 - 21.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt
"Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}" successfulOnly = true branchFilter = "+:*" } } } dependencies { dependency( AbsoluteId("Gradle_${vcsBranch.branchName.uppercase()}_${NIGHTLY_SNAPSHOT_BUILD_ID}"), ) { artifacts {Created: 2025-12-31 11:36 - Last Modified: 2025-06-10 10:38 - 2.3K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt
} private fun uppercase(original: RequestBody?): RequestBody = object : RequestBody() { override fun contentType(): MediaType? = original!!.contentType() override fun contentLength(): Long = original!!.contentLength() override fun writeTo(sink: BufferedSink) { val uppercase = uppercase(sink) val bufferedSink = uppercase.buffer() original!!.writeTo(bufferedSink)Created: 2025-12-26 11:42 - Last Modified: 2025-11-04 16:11 - 28.2K bytes - Click Count (0) -
android/guava/src/com/google/common/net/UrlEscapers.java
* byte is then represented by the 3-character string "%XY", where "XY" is the two-digit, * uppercase, hexadecimal representation of the byte value. * </ul> * * <p><b>Note:</b> Unlike other escapers, URL escapers produce <a * href="https://url.spec.whatwg.org/#percent-encode">uppercase</a> hexadecimal sequences. */ public static Escaper urlPathSegmentEscaper() { return URL_PATH_SEGMENT_ESCAPER;
Created: 2025-12-26 12:43 - Last Modified: 2024-12-21 03:10 - 7.1K bytes - Click Count (0) -
guava/src/com/google/common/io/BaseEncoding.java
upperCased[i] = Ascii.toUpperCase(chars[i]); } Alphabet upperCase = new Alphabet(name + ".upperCase()", upperCased); return ignoreCase ? upperCase.ignoreCase() : upperCase; } Alphabet lowerCase() { if (!hasUpperCase()) { return this; } checkState(!hasLowerCase(), "Cannot call lowerCase() on a mixed-case alphabet"); char[] lowerCased = new char[chars.length];Created: 2025-12-26 12:43 - Last Modified: 2025-10-06 14:51 - 41.7K bytes - Click Count (0) -
guava/src/com/google/common/net/UrlEscapers.java
* byte is then represented by the 3-character string "%XY", where "XY" is the two-digit, * uppercase, hexadecimal representation of the byte value. * </ul> * * <p><b>Note:</b> Unlike other escapers, URL escapers produce <a * href="https://url.spec.whatwg.org/#percent-encode">uppercase</a> hexadecimal sequences. */ public static Escaper urlPathSegmentEscaper() { return URL_PATH_SEGMENT_ESCAPER;
Created: 2025-12-26 12:43 - Last Modified: 2024-12-21 03:10 - 7.1K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java
assertTrue(CharUtil.isUrlChar('a')); // first lowercase assertTrue(CharUtil.isUrlChar('z')); // last lowercase assertTrue(CharUtil.isUrlChar('A')); // first uppercase assertTrue(CharUtil.isUrlChar('Z')); // last uppercase assertTrue(CharUtil.isUrlChar('0')); // first digit assertTrue(CharUtil.isUrlChar('9')); // last digit // Test characters just outside ranges that are not valid
Created: 2025-12-20 11:21 - Last Modified: 2025-11-24 03:59 - 5.6K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java
assertTrue(result.startsWith("NtlmChallenge[challenge=0x")); assertTrue(result.endsWith(",dc=SERVER123]")); // Hexdump.toHexString with size = length * 2 produces 8 uppercase hex chars // The hex should be "010203FF" assertTrue(result.contains("010203FF")); } @Test @DisplayName("toString with empty challenge array")
Created: 2025-12-20 13:44 - Last Modified: 2025-08-14 05:31 - 6K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
// Act String result = uuid.toString(); // Assert assertEquals(VALID_UUID_STRING, result.toUpperCase(), "toString() should return the correct UUID string in uppercase"); } @Test @DisplayName("toString() should work correctly for UUID created from string") void testToStringFromConstructorWithString() {Created: 2025-12-20 13:44 - Last Modified: 2025-08-14 05:31 - 13.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
private static void testEncodingWithCasing( BaseEncoding encoding, String decoded, String encoded) { testEncodingWithSeparators(encoding, decoded, encoded); testEncodingWithSeparators(encoding.upperCase(), decoded, Ascii.toUpperCase(encoded)); testEncodingWithSeparators(encoding.lowerCase(), decoded, Ascii.toLowerCase(encoded)); } private static void testEncodingWithSeparators(
Created: 2025-12-26 12:43 - Last Modified: 2025-08-07 16:05 - 24.7K bytes - Click Count (0)