- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 123 for inheritance (0.13 seconds)
-
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);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (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);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.1K bytes - Click Count (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);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/merge/MavenModelMerger.java
*/ @Deprecated(since = "4.0.0") public class MavenModelMerger extends ModelMerger { /** * The hint key for the child path adjustment used during inheritance for URL calculations. */ public static final String CHILD_PATH_ADJUSTMENT = "child-path-adjustment"; /** * The context key for the artifact id of the target model. */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 21.7K bytes - Click Count (0) -
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() */ @NonnullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 15.3K bytes - Click Count (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);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 23.5K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/DcerpcBindTest.java
assertEquals("0x0004", getResultMessageMethod.invoke(null, 4), "Should return hex format for code 4"); } } @Nested @DisplayName("Inheritance Tests") class InheritanceTests { @Test @DisplayName("DcerpcBind should extend DcerpcMessage") void testInheritance() { // Then
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.7K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
// Then assertEquals(100 + dataLength - bodyStart, bytesRead); assertEquals(dataLength, response.getDataLength()); } @Test @DisplayName("Should verify inheritance from ServerMessageBlock2Response") void testInheritance() { // Then assertTrue(response instanceof ServerMessageBlock2Response); assertTrue(response instanceof ServerMessageBlock2); }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 22.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java
fail("Should throw exception for null property"); } catch (IllegalArgumentException e) { // Expected } } // Test inheritance @Test public void test_inheritance() { assertTrue(messages instanceof FessLabels); assertTrue(messages instanceof org.lastaflute.core.message.UserMessages); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 28.9K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/InferenceStrategyTest.java
assertNotNull(parentElement.child("artifactId").orElse(null)); assertNotNull(parentElement.child("version").orElse(null)); } @Test @DisplayName("should handle partial inheritance in 4.0.0") void shouldHandlePartialInheritanceIn400() throws Exception { String parentPomXml = """ <?xml version="1.0" encoding="UTF-8"?>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 35.2K bytes - Click Count (0)