- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for unregistration (0.09 sec)
-
src/main/java/jcifs/internal/witness/WitnessUnregisterResponse.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.witness; /** * Represents a witness unregistration response as defined in MS-SWN specification. * Contains the result of a witness unregistration request. */ public class WitnessUnregisterResponse { /** * Creates a new witness unregister response. */ public WitnessUnregisterResponse() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterRequest.java
private byte[] contextHandle; /** * Gets the registration ID to unregister. * * @return the registration ID */ public String getRegistrationId() { return registrationId; } /** * Sets the registration ID to unregister. * * @param registrationId the registration ID */ public void setRegistrationId(String registrationId) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java
* @param contextHandle the context handle from registration */ public WitnessUnregisterMessage(byte[] contextHandle) { super(WITNESS_UNREGISTER); this.contextHandle = contextHandle != null ? contextHandle.clone() : new byte[20]; } /** * Sets the context handle for unregistration. * * @param contextHandle the context handle from registration */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/util/ResourceManagerTest.java
} @Test @DisplayName("Test resource unregistration") void testResourceUnregistration() { TestResource resource = new TestResource("test5"); String resourceId = resourceManager.registerResource(resource); resourceManager.unregisterResource(resourceId); // After unregistration, the resource should be removed from active tracking
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/main/java/jcifs/internal/witness/WitnessRegistration.java
* Enumeration of possible witness registration states. */ public enum WitnessRegistrationState { /** Registration is in progress */ REGISTERING, /** Registration is active and confirmed */ REGISTERED, /** Unregistration is in progress */ UNREGISTERING, /** Registration has failed */ FAILED, /** Registration has expired due to timeout */ EXPIRED
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/MockWitnessService.java
* @return the registration count */ public int getRegistrationCount() { return registrations.size(); } /** * Check if a registration exists * * @param registrationId the registration ID * @return true if registration exists */ public boolean hasRegistration(String registrationId) { return registrations.containsKey(registrationId); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaBufferManager.java
import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * RDMA buffer manager for efficient memory region pooling. * * Manages pools of pre-registered memory regions to avoid the overhead * of frequent registration/deregistration during RDMA operations. */ public class RdmaBufferManager implements AutoCloseable { private static final Logger log = LoggerFactory.getLogger(RdmaBufferManager.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 8.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java
assertNotNull(registration.getRegistrationId()); assertEquals("\\\\server\\share", registration.getShareName()); assertEquals(serverAddress, registration.getServerAddress()); assertEquals(WitnessServiceType.FILE_SERVER_WITNESS, registration.getServiceType()); assertEquals(WitnessVersion.VERSION_2, registration.getVersion()); assertEquals(WitnessRegistrationState.REGISTERING, registration.getState());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterResponse.java
this.error = error; } /** * Gets the registration ID. * * @return the registration ID */ public String getRegistrationId() { return registrationId; } /** * Sets the registration ID. * * @param registrationId the registration ID */ public void setRegistrationId(String registrationId) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatRequest.java
private long sequenceNumber; private byte[] contextHandle; /** * Gets the registration ID. * * @return the registration ID */ public String getRegistrationId() { return registrationId; } /** * Sets the registration ID. * * @param registrationId the registration ID */ public void setRegistrationId(String registrationId) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.3K bytes - Viewed (0)