- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 335 for assertValue (0.39 sec)
-
src/test/java/jcifs/smb/SmbOperationExceptionTest.java
assertFalse(SmbOperationException.ErrorCode.PATH_NOT_FOUND.isRetryable()); assertFalse(SmbOperationException.ErrorCode.FILE_EXISTS.isRetryable()); assertFalse(SmbOperationException.ErrorCode.DIRECTORY_NOT_EMPTY.isRetryable()); assertFalse(SmbOperationException.ErrorCode.DISK_FULL.isRetryable()); assertFalse(SmbOperationException.ErrorCode.QUOTA_EXCEEDED.isRetryable());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java
assertTrue(urlFilter.match("https://example.com/page.html")); assertFalse(urlFilter.match("https://example.com/style.css")); assertFalse(urlFilter.match("https://example.com/script.js")); assertFalse(urlFilter.match("https://example.com/admin/login")); assertFalse(urlFilter.match("https://example.com/page#section")); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 19K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
auth.resetAuthenticationTimestamp(); assertFalse(auth.isExpired()); // Test with no expiration (TTL = 0) auth.setAuthenticationTTL(0); Thread.sleep(100); assertFalse(auth.isExpired()); // Test with negative TTL (no expiration) auth.setAuthenticationTTL(-1); Thread.sleep(100); assertFalse(auth.isExpired()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
} }; HashMap<String, Object> source = new HashMap<>(); assertFalse(fessConfig.validateIndexRequiredFields(source)); source.put("aaa", null); assertFalse(fessConfig.validateIndexRequiredFields(source)); source.put("aaa", null); source.put("bbb", null); assertFalse(fessConfig.validateIndexRequiredFields(source)); source.put("aaa", "");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
when(negotiationResponse.isSigningRequired()).thenReturn(false); when(negotiationResponse.isSigningNegotiated()).thenReturn(false); assertFalse(negotiationResponse.isSigningEnabled()); assertFalse(negotiationResponse.isSigningRequired()); assertFalse(negotiationResponse.isSigningNegotiated()); // Signing enabled but not required when(negotiationResponse.isSigningEnabled()).thenReturn(true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java
// Then assertTrue(response.haveCapabilitiy(0x01)); // Has this bit assertTrue(response.haveCapabilitiy(0x0F)); // Has all these bits assertFalse(response.haveCapabilitiy(0x10)); // Doesn't have this bit assertFalse(response.haveCapabilitiy(0x40)); // Doesn't have this bit } @Test @DisplayName("Should check DFS support correctly")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 32.5K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java
assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://localhost"))); assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://127.0.0.1"))); assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "file:///somepath"))); assertFalse(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "file://D:/somepath"))); // not a proper url so returns false;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
}; assertTrue(customEnv.is("bool.true")); assertFalse(customEnv.is("bool.false")); assertTrue(customEnv.is("bool.yes")); assertFalse(customEnv.is("bool.no")); assertTrue(customEnv.is("bool.on")); assertFalse(customEnv.is("bool.off")); assertTrue(customEnv.is("bool.1")); assertFalse(customEnv.is("bool.0")); }
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
package jcifs.smb; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertNull; import static org.junit.jupiter.api.Assertions.assertThrows; import static org.junit.jupiter.api.Assertions.assertTrue; import static org.mockito.ArgumentMatchers.any;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.4K bytes - Viewed (0)