- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for getStatistics (0.09 sec)
-
src/test/java/jcifs/audit/SecurityAuditLoggerTest.java
Map<EventType, Long> stats = logger.getStatistics(); assertEquals(Long.valueOf(1), stats.get(EventType.FILE_ACCESS), "Should have 1 file access event"); } @Test @DisplayName("Test log encryption") void testLogEncryption() { logger.logEncryption(true, "AES-128-GCM", "SMB3.1.1"); Map<EventType, Long> stats = logger.getStatistics();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/jcifs/util/ResourceManagerTest.java
String resourceId = resourceManager.registerResource(resource); assertNotNull(resourceId); assertTrue(resourceId.contains("TestResource")); Map<String, Object> stats = resourceManager.getStatistics(); assertTrue((long) stats.get("totalAllocated") > 0); } @Test @DisplayName("Test resource close tracking") void testResourceCloseTracking() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/MultiChannelManagerBasicTest.java
@DisplayName("MultiChannelManager should initialize successfully") void testInitialization() { assertNotNull(multiChannelManager); MultiChannelManager.ChannelStatistics stats = multiChannelManager.getStatistics(); assertEquals(0, stats.getActiveSessions()); assertEquals(0, stats.getTotalChannels()); } @Test @DisplayName("createChannelTransport should fail with null addresses")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaTransport.java
return bufferManager; } /** * Gets RDMA statistics. * * @return statistics instance */ public RdmaStatistics getStatistics() { return statistics; } // Delegate all SmbTransportInternal methods to the wrapped transport @Override public boolean hasCapability(int cap) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.9K bytes - Viewed (0)