Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mixed_case (0.05 sec)

  1. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

            String result = (String) method.invoke(keyMatchHelper, "JAVA");
            assertEquals("java", result);
    
            result = (String) method.invoke(keyMatchHelper, "Mixed_Case");
            assertEquals("mixed_case", result);
    
            result = (String) method.invoke(keyMatchHelper, (String) null);
            assertNull(result);
    
            result = (String) method.invoke(keyMatchHelper, "");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt

          return object : ForwardingSource(original) {
            override fun read(
              sink: Buffer,
              byteCount: Long,
            ): Long {
              val mixedCase = Buffer()
              val count = original.read(mixedCase, byteCount)
              sink.writeUtf8(mixedCase.readUtf8().uppercase())
              return count
            }
          }
        }
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NameTest.java

            assertEquals("LOWERCASE", name.name);
        }
    
        @Test
        void constructor_withMixedCaseName_shouldConvertToUpperCase() {
            Name name = new Name(mockConfig, "MiXeDcAsE", 0x20, null);
            assertEquals("MIXEDCASE", name.name);
        }
    
        @Test
        void writeWireFormat_withDifferentOffsets_shouldWorkCorrectly() {
            Name name = new Name(mockConfig, "TEST", 0x20, null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top