Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for MIXEDCASE (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/jcifs/NetbiosNameTest.java

            assertEquals(lowerCase, mockNetbiosName.getName());
    
            when(mockNetbiosName.getName()).thenReturn(mixedCase);
            assertEquals(mixedCase, mockNetbiosName.getName());
        }
    
        @Test
        @DisplayName("Should handle workstation service type")
        void testWorkstationServiceType() {
            // Given
            int workstationType = 0x00;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8K bytes
    - Click Count (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
            }
          }
        }
      }
    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)
Back to Top