Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for MiXeDcAsE (0.06 seconds)

  1. 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
            }
          }
        }
      }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Nov 04 16:11:23 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  2. 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);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 19.4K bytes
    - Click Count (0)
Back to Top