- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for getFff (0.96 sec)
-
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/context/CIFSContextWrapperTest.java
} @Test void testGetDfs() { // Test getDfs() method DfsResolver mockDfsResolver = mock(DfsResolver.class); when(mockDelegate.getDfs()).thenReturn(mockDfsResolver); assertEquals(mockDfsResolver, cifsContextWrapper.getDfs()); verify(mockDelegate).getDfs(); } @Test void testGetCredentials() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/context/BaseContextTest.java
} @Test @DisplayName("getDfs should return initialized DFS resolver") void testGetDfs() { // When DfsResolver dfs = context.getDfs(); // Then assertNotNull(dfs, "DFS resolver should not be null"); assertSame(dfs, context.getDfs(), "Should return same instance on multiple calls"); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeConnection.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 30.4K bytes - Viewed (1) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
throw new SmbException("The requested list operations is invalid: " + u.toString()); } final Set<FileEntry> set = new HashSet<>(); if (tc.getDfs().isTrustedDomain(tc, locator.getServer())) { /* * The server name is actually the name of a trusted * domain. Add DFS roots to the list. */ try {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
// Mock credentials to avoid NullPointerException when(ctx.getCredentials()).thenReturn(credentials); when(credentials.getUserDomain()).thenReturn("DOMAIN"); // Mock DFS resolver when(ctx.getDfs()).thenReturn(dfsResolver); } // Helper to set private field 'tree' private static void setTree(SmbTreeConnection c, SmbTreeImpl tree) { try {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0)