- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 286 for mixed (0.25 sec)
-
src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java
assertEquals(1, SMBUtil.readInt2(buffer, 2)); } @Test @DisplayName("Should handle mixed lock operations") void testMixedLockOperations() { // Simulate a complex scenario with mixed lock operations Smb2Lock[] locks = new Smb2Lock[] { new Smb2Lock(0L, 512L, Smb2Lock.SMB2_LOCKFLAG_EXCLUSIVE_LOCK),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/util/StringUtilTest.java
StringBuffer sb2 = new StringBuffer("beta"); String result = StringUtil.join("-", sb1, sb2); assertEquals("alpha-beta", result); } @Test @DisplayName("Should handle mixed CharSequence types") void testJoinWithMixedCharSequenceTypes() { String str = "string"; StringBuilder builder = new StringBuilder("builder"); StringBuffer buffer = new StringBuffer("buffer");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 9K bytes - Viewed (0) -
okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt
@Test fun publicSuffixDotOrgTestCases() { // Any copyright is dedicated to the Public Domain. // https://creativecommons.org/publicdomain/zero/1.0/ // Mixed case. checkPublicSuffix("COM", null) checkPublicSuffix("example.COM", "example.com") checkPublicSuffix("WwW.example.COM", "example.com") // Leading dot. checkPublicSuffix(".com", null)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 22:00:49 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/util/SimpleCircuitBreakerTest.java
assertNotNull(str); assertTrue(str.contains("test")); assertTrue(str.contains("CLOSED")); assertTrue(str.contains("100.00%")); } @Test @DisplayName("Test mixed success and failure pattern") void testMixedPattern() throws Exception { // Success circuitBreaker.call(() -> "success"); // Two failures (not enough to open)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
} } @Nested @DisplayName("Edge Case Tests") class EdgeCaseTests { @Test @DisplayName("UUID with mixed case should parse correctly") void testMixedCaseUuid() { // Arrange String mixedCaseUuid = "00112233-4455-6677-8899-AaBbCcDdEeFf"; // Act
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/SMBSigningDigestTest.java
any(CommonServerMessageBlock.class)); } @Test @DisplayName("Test multiple verify operations with mixed results") void testMultipleVerifyOperations() { // Arrange when(signingDigest.verify(any(byte[].class), anyInt(), anyInt(), anyInt(), any())).thenReturn(true, false, true, false, true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
return props; } }; assertEquals(title, titleEnv.getEnvironmentTitle()); } } // Test mixed boolean representations public void xtest_mixedBooleanRepresentations() { FessEnv.SimpleImpl mixedBoolEnv = new FessEnv.SimpleImpl() { protected Properties prepareProperties() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java
// The iterator returns null when no elements, doesn't throw exception assertNull(iterator.next(), "Should return null when no next element"); } /** * Test multiple iterations with mixed filtering results. */ @Test void testMultipleIterationsWithFilter() throws Exception { // Given when(mockDelegate.hasNext()).thenReturn(true, true, true, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
assertTrue(boolResult.hasClauses()); assertEquals(1, boolResult.mustNot().size()); assertEquals(1, boolResult.must().size()); } // Test convertBooleanQuery with mixed clauses public void test_convertBooleanQuery_withMixedClauses() { BooleanQuery.Builder boolQueryBuilder = new BooleanQuery.Builder(); TermQuery termQuery1 = new TermQuery(new Term("field1", "value1"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilderTest.java
assertEquals(builder, result); // Test method chaining assertEquals("test_index", builder.settingsIndexName); // Test setting index name with mixed case builder.setSettingsIndexName("TeSt_InDeX_NaMe"); assertEquals("test_index_name", builder.settingsIndexName); // Test setting index name that's already lowercase
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 14.4K bytes - Viewed (0)