- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for upperCase (0.04 sec)
-
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)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 28.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
assertFailsToDecode(base64(), "?", "Invalid input length 1"); } public void testBase64CannotUpperCase() { assertThrows(IllegalStateException.class, () -> base64().upperCase()); } public void testBase64CannotLowerCase() { assertThrows(IllegalStateException.class, () -> base64().lowerCase()); } public void testBase64CannotIgnoreCase() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
ScriptEngine upperCase = scriptEngineFactory.getScriptEngine("TESTENGINE"); ScriptEngine mixedCase = scriptEngineFactory.getScriptEngine("TestEngine"); assertNotNull(lowerCase); assertNotNull(upperCase); assertNotNull(mixedCase); assertEquals(testScriptEngine, lowerCase); assertEquals(testScriptEngine, upperCase); assertEquals(testScriptEngine, mixedCase);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/BaseEncodingTest.java
assertFailsToDecode(base64(), "?", "Invalid input length 1"); } public void testBase64CannotUpperCase() { assertThrows(IllegalStateException.class, () -> base64().upperCase()); } public void testBase64CannotLowerCase() { assertThrows(IllegalStateException.class, () -> base64().lowerCase()); } public void testBase64CannotIgnoreCase() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
ScriptEngine retrievedByClass = scriptEngineFactory.getScriptEngine("testscriptengine"); assertNotNull(retrievedByClass); assertEquals(engine, retrievedByClass); } // Test add method with uppercase name public void test_add_uppercaseName() { TestScriptEngine engine = new TestScriptEngine(); scriptEngineFactory.add("TESTENGINE", engine); // Should be accessible with lowercase
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/WildcardQueryCommandTest.java
QueryBuilder queryBuilder2 = queryCommand.convertWildcardQuery(queryContext2, wildcardQuery2, 1.0f); assertNotNull(queryBuilder2); // The term should remain uppercase String queryString2 = queryBuilder2.toString(); assertTrue(queryString2.contains("TEST*") || queryString2.contains("TEST")); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
return text.substring(prefix.length()); } return text; } /** * Decapitalizes a string according to JavaBeans conventions. * Note: If the first two characters are uppercase, the string will not be decapitalized. * <p> * Usage example: * </p> * * <pre> * StringUtil.decapitalize("UserId") = "userId" * StringUtil.decapitalize("ABC") = "ABC"
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
assertTrue(builder instanceof MatchPhrasePrefixQueryBuilder); MatchPhrasePrefixQueryBuilder mpqb = (MatchPhrasePrefixQueryBuilder) builder; assertEquals("TEST", mpqb.value()); // Should remain uppercase } public void test_convertPrefixQuery_withEmptyPrefix() throws Exception { QueryContext context = new QueryContext("test", false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
// Should add file type queries since there's a filetype query assertTrue(queryMap.size() > 2); // Keys might be labels.facet_filetype_* or uppercase file type assertTrue(queryMap.containsKey("labels.facet_filetype_pdf") || queryMap.containsKey("PDF")); assertTrue(queryMap.containsKey("DOC") || queryMap.containsKey("labels.facet_filetype_doc"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.6K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
* determine addressability of any host, clients of this class will need to perform their own DNS * lookups. * * <p>During construction, names are normalized in two ways: * * <ol> * <li>ASCII uppercase characters are converted to lowercase. * <li>Unicode dot separators other than the ASCII period ({@code '.'}) are converted to the ASCII * period. * </ol> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0)