- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for hierarchy (0.48 sec)
-
src/test/java/jcifs/smb/SMBProtocolDowngradeExceptionTest.java
return Stream.of(Arguments.of((String) null), Arguments.of(""), Arguments.of("unexpected downgrade")); } @Test @DisplayName("Default ctor: null message/cause; toString is class name; type hierarchy") void defaultConstructor_hasNullMessageAndCause_andTypeHierarchy() { // Arrange & Act SMBProtocolDowngradeException ex = new SMBProtocolDowngradeException();
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbResourceLocator.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
private static Object getField(Object target, String name) { try { Field f = findField(target.getClass(), name); f.setAccessible(true); return f.get(target); } catch (Exception e) { throw new RuntimeException(e); } } // Helper: find field in class hierarchy
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java
long lastModified = conn.getLastModified(); assertEquals(lastModified, date); } /** * Helper method to get private field value using reflection. * Searches the class hierarchy to find the field. */ private Object getField(Object obj, String fieldName) throws Exception { Class<?> clazz = obj.getClass(); while (clazz != null) { try {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
} /** * Represents a crawl request containing a URL and its depth in the crawling hierarchy. * Used for managing recursive crawling operations. */ private static class CrawlRequest { /** The URL to be crawled. */ private final String url; /** The depth of this URL in the crawling hierarchy. */ private final int depth; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/test/java/jcifs/https/HandlerTest.java
method.setAccessible(true); // Required to invoke protected method assertEquals(443, method.invoke(testHandler)); } @Test @DisplayName("Should maintain inheritance hierarchy") void testInheritanceHierarchy() { // When Class<?> superclass = Handler.class.getSuperclass(); // Then assertEquals(jcifs.http.Handler.class, superclass);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
long lastModified = conn.getLastModified(); assertEquals(lastModified, date); } /** * Helper method to get private field value using reflection. * Searches the class hierarchy to find the field. */ private Object getField(Object obj, String fieldName) throws Exception { Class<?> clazz = obj.getClass(); while (clazz != null) { try {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/https/HandlerTest.java
method.setAccessible(true); assertEquals(443, method.invoke(testHandler)); } @Test @DisplayName("Should maintain inheritance hierarchy") void testInheritanceHierarchy() { // When Class<?> superclass = Handler.class.getSuperclass(); // Then
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
CLAUDE.md
- `http/HcHttpClient.java`, `fs/FileSystemClient.java`, `storage/StorageClient.java` **DI Config**: `fess-crawler-lasta/src/main/resources/crawler.xml` ### Exception Hierarchy ``` CrawlerSystemException (unchecked) # Setup/config errors CrawlingAccessException (checked) # Runtime crawl errors ├─ MaxLengthExceededException └─ ChildUrlsException
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java
@Mock SmbResourceLocator other; @Mock DfsReferralData referral; // Reflection-based API checks ensure the interface contract is as expected @Test @DisplayName("Type hierarchy and method signatures are correct") void typeAndSignatures() throws Exception { Class<?> clazz = SmbResourceLocatorInternal.class; // Assert it's an interface and extends the right superinterfaceRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0)