- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 168 for lifecycle (0.05 sec)
-
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.internal.smb2.lease.Smb2LeaseKey; /** * Manager for persistent and durable SMB handles. * * This class provides: * - Handle lifecycle management * - Persistent storage for persistent handles * - Expiration tracking for durable handles * - Thread-safe access to handle information */ public class PersistentHandleManager {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/SmbPipeHandleTest.java
assertEquals(mockOutputStream, smbPipeHandle.getOutput(), "getOutput() should return the correct output stream."); } /** * Tests related to the lifecycle management of the handle (e.g., closing). */ @Nested public class LifecycleManagementTest { /** * Verifies that the close method can be called without throwing an exception.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/multichannel/ChannelManagerTest.java
assertNull(result); // No channels registered yet } @Test void testChannelManagerLifecycle() { // Test complete lifecycle assertFalse(channelManager.isUseMultiChannel()); try { channelManager.initializeMultiChannel(); // Should not throw exception even if initialization fails
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 7.6K bytes - Viewed (0) -
cmd/xl-storage-format-utils.go
// // Note: Only the scanner requires fivs.Versions to have exclusively non-free versions. This is used while enforcing NewerNoncurrentVersions lifecycle element. func getFileInfoVersions(xlMetaBuf []byte, volume, path string, inclFreeVersions bool) (FileInfoVersions, error) { fivs, err := getAllFileInfoVersions(xlMetaBuf, volume, path, true) if err != nil { return fivs, err
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/rdma/RdmaIntegrationTest.java
// ADDITIONAL UNIT TESTS - Always run with mocks // =================================================== @Test public void testRdmaConnectionLifecycle() throws Exception { // Test connection lifecycle without requiring real server RdmaProvider provider = RdmaProviderFactory.selectBestProvider(); assertNotNull(provider, "Should always have a provider (at least TCP fallback)");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 13.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
*/ protected void startUp() throws Exception {} /** * Run the service. This method is invoked on the execution thread. Implementations must respond * to stop requests. You could poll for lifecycle changes in a work loop: * * <pre> * public void run() { * while ({@link #isRunning()}) { * // perform a unit of work * } * } * </pre> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
private boolean leakDetectionEnabled = true; private boolean autoCleanupEnabled = true; /** * Resource holder that tracks resource lifecycle */ private static class ResourceHolder { final String resourceId; final String resourceType; final WeakReference<AutoCloseable> resourceRef;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/TransportTest.java
transport.setState(state); assertFalse(transport.isFailed(), "State " + state + " should not be failed"); } } } @Nested @DisplayName("Connection lifecycle tests") class ConnectionLifecycleTests { @Test @DisplayName("connect should return true if already connected") void shouldReturnTrueIfAlreadyConnected() throws TransportException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.25.md
- Kubeadm: fix a bug where the static pod changes detection logic is inconsistent with kubelet ([#118069](https://github.com/kubernetes/kubernetes/pull/118069), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle] ## Dependencies ### Added
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon May 06 09:23:20 UTC 2024 - 419.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
import org.mockito.Mockito; import jcifs.internal.SMBProtocolDecodingException; /** * Test class for FileInformation interface and its implementations */ @TestInstance(TestInstance.Lifecycle.PER_CLASS) class FileInformationTest { /** * Test that interface constants are correctly defined */ @Test @DisplayName("Test FileInformation constants are correctly defined")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0)