Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 312 for parentEl (0.04 sec)

  1. docs/metrics/v3.md

    For ease of configuration, each (non-empty) parent of the path serves all the metric endpoints at its child paths. For example, to query all system metrics scrape `/minio/metrics/v3/system/`.
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            assertEquals("ROLE_PARENT", childSecured.value()[0]);
        }
    
        // Test method annotation inheritance
        public void test_methodAnnotationInheritance() throws NoSuchMethodException {
            // Parent method has annotation
            Method parentMethod = ParentClass.class.getMethod("parentMethod");
            Secured parentSecured = parentMethod.getAnnotation(Secured.class);
            assertNotNull(parentSecured);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/DcerpcHandleTest.java

                // Given: Mock message
                DcerpcMessage mockMessage = mock(DcerpcMessage.class);
                lenient().when(mockMessage.getResult()).thenReturn(null);
    
                // When: Encoding message (calls parent implementation)
                // Then: Should complete without throwing exception
                assertDoesNotThrow(() -> handle.encodeMessage(mockMessage, new byte[100]));
            }
        }
    
        @Nested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java

        }
    
        /**
         * Test that methods are properly overridden
         */
        @Test
        @DisplayName("Test methods are properly overridden from parent class")
        public void testMethodOverrides() throws NoSuchMethodException {
            // Given
            Class<?> clazz = SmbComTreeDisconnect.class;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java

            assertEquals(0, getFieldValue(netShareEnum, "setupCount"));
            assertEquals(5000, getFieldValue(netShareEnum, "timeout"));
    
            // Verify command and subcommand from parent class
            assertEquals(SmbComTransaction.SMB_COM_TRANSACTION, getFieldValue(netShareEnum, "command"));
            assertEquals(SmbComTransaction.NET_SHARE_ENUM, netShareEnum.getSubCommand());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

        }
    
        @Test
        @DisplayName("Test constructor with Configuration")
        void testConstructor() {
            assertNotNull(response);
            // Verify configuration is set through parent constructor
            verify(mockConfig, atLeastOnce()).getPid();
        }
    
        @Test
        @DisplayName("Test readParameterWordsWireFormat with zero setup count")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionTest.java

            // Verify that transaction is properly initialized
            assertNotNull(transaction);
    
            // Verify primary setup offset (should be 71 as per NTT_PRIMARY_SETUP_OFFSET)
            // This is set in the parent constructor
            assertNotNull(transaction);
        }
    
        @Test
        @DisplayName("Test constructor initialization with NT_TRANSACT_NOTIFY_CHANGE")
        void testConstructorWithNotifyChange() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/test/java/jcifs/smb/SmbResourceLocatorImplTest.java

            assertEquals("server/", c.getName());
    
            // root fallback
            SmbResourceLocatorImpl d = locator("smb:///");
            assertEquals("smb://", d.getName());
        }
    
        @Test
        @DisplayName("Parent URL is computed correctly")
        void testGetParent() {
            SmbResourceLocatorImpl a = locator("smb://server/share/dir/file.txt");
            assertEquals("smb://server/share/dir/", a.getParent());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java

            @DisplayName("Should initialize with SMB2_WRITE command")
            void testCommandInitialization() {
                Smb2WriteRequest writeRequest = new Smb2WriteRequest(mockConfig, testFileId);
                // Command is set in parent constructor
                assertNotNull(writeRequest);
            }
    
            @Test
            @DisplayName("Should accept null file ID in constructor")
            void testConstructorWithNullFileId() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  10. tests/transaction_test.go

    		t.Fatalf("Should find saved record")
    	}
    
    	if err := DB.First(&User{}, "name = ?", user1.Name).Error; err == nil {
    		t.Fatalf("Should not find rollbacked parent record")
    	}
    
    	if err := DB.First(&User{}, "name = ?", user2.Name).Error; err != nil {
    		t.Fatalf("Should not find rollbacked nested record")
    	}
    }
    
    func TestDisabledNestedTransaction(t *testing.T) {
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 13.3K bytes
    - Viewed (0)
Back to top