- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 72 for inheritance (0.11 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* <p> * This method traverses the parent hierarchy and includes profiles defined in parent POMs. * The returned list contains profiles from the current project and all of its ancestors in * the project inheritance chain. * * @return a non-null, possibly empty list of all profiles from this project and its parents * @see Profile * @see #getDeclaredProfiles() */ @Nonnull
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/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
/** * Helper method to set error code using reflection */ private void setErrorCode(NtTransQuerySecurityDescResponse response, int errorCode) throws Exception { // Navigate through the inheritance hierarchy to find the errorCode field Class<?> currentClass = response.getClass(); Field errorCodeField = null; while (currentClass != null && errorCodeField == null) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java
assertEquals(0x6, SmbComNtTransaction.NT_TRANSACT_QUERY_SECURITY_DESC); assertEquals(0x4, SmbComNtTransaction.NT_TRANSACT_NOTIFY_CHANGE); } @Test @DisplayName("Test inheritance from SmbComTransaction") void testInheritance() { // Verify that SmbComNtTransaction extends SmbComTransaction assertTrue(transaction instanceof SmbComTransaction);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java
// When & Then assertThrows(ArrayIndexOutOfBoundsException.class, () -> { response.readBytesWireFormat(buffer, offset); }); } @Test @DisplayName("Should verify inheritance from ServerMessageBlock2Response") void testInheritance() { // Then assertTrue(response instanceof ServerMessageBlock2Response); assertTrue(response instanceof ServerMessageBlock2);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
assertEquals(2, descr.length); assertEquals("WrLehDO\u0000B16BBDz\u0000", descr[0]); assertEquals("WrLehDz\u0000B16BBDz\u0000", descr[1]); } @Test @DisplayName("Test inheritance from SmbComTransaction") void testInheritance() { netServerEnum2 = new NetServerEnum2(realConfig, "DOMAIN", NetServerEnum2.SV_TYPE_ALL); assertTrue(netServerEnum2 instanceof SmbComTransaction);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
assertEquals("changedId", registeredRule.getRuleId()); assertSame(processor2, registeredRule.getResponseProcessor()); } /** * Test inheritance behavior */ public void test_inheritanceBehavior() { // Test that subclass can override match method ConditionalAbstractRule conditionalRule = new ConditionalAbstractRule();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 21.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
assertFalse(ace.isAllow()); assertEquals(0xFF, ace.getFlags()); assertEquals(0xFFFFFFFF, ace.getAccessMask()); } @Test @DisplayName("Test all flag combinations for inheritance") void testAllFlagCombinationsForInheritance() { // Test each individual flag ace.flags = ACE.FLAGS_OBJECT_INHERIT; assertFalse(ace.isInherited());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMultimap.java
@CanIgnoreReturnValue @Deprecated @Override @DoNotCall("Always throws UnsupportedOperationException") // DoNotCall wants this to be final, but we want to override it to return more specific types. // Inheritance is closed, and all subtypes are @DoNotCall, so this is safe to suppress. @SuppressWarnings("DoNotCall") public ImmutableCollection<V> removeAll(@Nullable Object key) { throw new UnsupportedOperationException(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 28.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
assertTrue(result.startsWith("NetShareEnum[")); assertTrue(result.endsWith("]")); assertTrue(result.contains("command=")); } @Test @DisplayName("Test inheritance from SmbComTransaction") void testInheritance() { netShareEnum = new NetShareEnum(realConfig); assertTrue(netShareEnum instanceof SmbComTransaction);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
int result = response.readBytesWireFormat(buffer, bufferIndex); assertEquals(8, result); assertNotNull(response.getResults()); } @Test @DisplayName("Test inheritance from ServerMessageBlock2Response") void testInheritance() { response = new Smb2QueryDirectoryResponse(mockConfig, (byte) 0x03); assertTrue(response instanceof ServerMessageBlock2Response);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0)