- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 24 for hierarchy (0.07 sec)
-
src/test/java/jcifs/smb1/util/transport/TransportExceptionTest.java
class SerializationTests { @Test @DisplayName("Should maintain exception hierarchy") void testExceptionHierarchy() { TransportException exception = new TransportException("Test"); // Verify the exception hierarchy assertTrue(exception instanceof IOException); assertTrue(exception instanceof Exception);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* <p> * This method traverses the parent hierarchy and collects all active profiles from * the current project and its ancestors. Active profiles are those that meet the * activation criteria through explicit activation or automatic conditions. * <p> * The combined set of active profiles from the entire project hierarchy affects * the effective build configuration. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Feb 27 11:07:03 UTC 2025 - 10.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java
// Setup final String message = "Test inheritance hierarchy"; final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY); // Execute final InvalidQueryException exception = new InvalidQueryException(messageCode, message); // Verify inheritance hierarchy assertTrue(exception instanceof FessSystemException);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.6K 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: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
* with {@link #where} and types are resolved using {@link #resolveType}. * * <p>Note that usually type mappings are already implied by the static type hierarchy (for example, * the {@code E} type variable declared by class {@code List} naturally maps to {@code String} in * the context of {@code class MyStringList implements List<String>}). In such case, prefer to use
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
guava/src/com/google/common/eventbus/SubscriberRegistry.java
identifiers.put(ident, method); } } } } return ImmutableList.copyOf(identifiers.values()); } /** Global cache of classes to their flattened hierarchy of supertypes. */ private static final LoadingCache<Class<?>, ImmutableSet<Class<?>>> flattenHierarchyCache = CacheBuilder.newBuilder() .weakKeys() .build( CacheLoader.from(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.8K bytes - Viewed (0) -
docs/security/README.md
#### Figure 2 - KMS key hierarchy ``` CMK (master key) |
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Feb 26 09:25:50 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/RuntimeCIFSExceptionTest.java
assertEquals("Message", exception.getMessage()); assertNull(exception.getCause()); }); } @Test @DisplayName("Should preserve exception hierarchy") void testExceptionHierarchy() { // When RuntimeCIFSException exception = new RuntimeCIFSException("Test"); // Then assertTrue(exception instanceof RuntimeException);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
/** Array of supported file protocols for URL classification. */ protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" }; /** Queue to track the current XML element hierarchy during parsing. */ protected LinkedList<String> tagQueue; /** List to store parsed label types for access control. */ protected List<LabelType> labelList;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0)