- Sort Score
- Result 10 results
- Languages All
Results 571 - 580 of 622 for setaun (0.03 sec)
-
src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoResponseTest.java
class Smb2QueryInfoResponseTest { @Mock private Configuration mockConfig; @Mock private Decodable mockDecodable; private Smb2QueryInfoResponse response; @BeforeEach void setUp() { mockConfig = mock(Configuration.class); } @Test @DisplayName("Test constructor initializes with config and info type/class") void testConstructor() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
/** * Test class for NetServerEnum2Response */ class NetServerEnum2ResponseTest { @Mock private Configuration mockConfig; private NetServerEnum2Response response; @BeforeEach void setUp() throws Exception { MockitoAnnotations.openMocks(this); // Use real configuration for most tests mockConfig = new BaseConfiguration(false); response = new NetServerEnum2Response(mockConfig);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
@DisplayName("Smb2QueryDirectoryResponse Tests") class Smb2QueryDirectoryResponseTest { @Mock private Configuration mockConfig; private Smb2QueryDirectoryResponse response; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); when(mockConfig.isUseUnicode()).thenReturn(true); when(mockConfig.getMaximumBufferSize()).thenReturn(65536); } @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/resources/fess_label_id.properties
labels.facet_label_title=Label labels.facet_timestamp_title=Waktu labels.facet_timestamp_1day=Dalam 24 jam labels.facet_timestamp_1week=Dalam seminggu labels.facet_timestamp_1month=Dalam sebulan labels.facet_timestamp_1year=Dalam setahun labels.facet_timestamp_3month=Dalam 3 bulan labels.facet_timestamp_6month=Dalam 6 bulan labels.facet_timestamp_2year=Dalam 2 tahun labels.facet_timestamp_3year=Dalam 3 tahun labels.facet_contentLength_title=Ukuran
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 45.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileFsFullSizeInformationTest.java
/** * Test suite for FileFsFullSizeInformation class */ class FileFsFullSizeInformationTest { private FileFsFullSizeInformation fileFsFullSizeInfo; @BeforeEach void setUp() { fileFsFullSizeInfo = new FileFsFullSizeInformation(); } @Nested @DisplayName("Interface Implementation Tests") class InterfaceImplementationTests { @TestRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.5K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/lsarpcTest.java
import jcifs.dcerpc.ndr.NdrSmall; class lsarpcTest { @Mock private NdrBuffer mockNdrBuffer; @Mock private NdrBuffer mockDeferredNdrBuffer; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); // Set the deferred field directly since it's a public field mockNdrBuffer.deferred = mockDeferredNdrBuffer; // Set up deferred buffer chain to avoid NPERegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 60.8K bytes - Viewed (0) -
docs/smb3-features/02-persistent-handles-design.md
is.read(buffer); assertEquals("test data", new String(buffer)); } } @Test public void testPersistentHandleSurvivesReboot() throws Exception { // This test requires special setup with server reboot capability CIFSContext context = getTestContext(); context.getConfig().setProperty("jcifs.smb.client.usePersistentHandles", "true");
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 31.6K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
file.createNewFile(); // Monitor for witness notifications TestWitnessListener listener = new TestWitnessListener(); // Simulate cluster failover (would require test environment setup) // ... trigger server failover ... // Verify that witness notification was received and handled assertTrue(listener.waitForNotification(30000)); // 30 second timeout
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContextTest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 34K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
return; } finally { synchronized (run_thread) { if (run_thread != this.thread) { /* * Thread no longer the one setup for this transport -- * doConnect returned too late, just ignore. */ if (ex0 instanceof SocketTimeoutException) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0)