- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 256 for Fixed (0.02 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) -
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/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) -
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) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
assertWellFormed(0xc8, 0x8a, 0x63, 0xc8, 0x8a, 0x63); // "\u020ac\u020ac" // Four-byte characters // "\u024B62\u024B62" assertWellFormed(0xc9, 0x8b, 0x36, 0x32, 0xc9, 0x8b, 0x36, 0x32); // Mixed string // "a\u020ac\u00a2b\\u024B62u020acc\u00a2de\u024B62" assertWellFormed( 0x61, 0xc8, 0x8a, 0x63, 0xc2, 0xa2, 0x62, 0x5c, 0x75, 0x30, 0x32, 0x34, 0x42, 0x36, 0x32,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K 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)