Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for unregistration (0.16 sec)

  1. src/main/java/jcifs/internal/witness/WitnessRpcClient.java

            }
        }
    
        /**
         * Performs witness unregistration.
         *
         * @param request the unregistration request
         * @return the unregistration response
         * @throws IOException if the RPC call fails
         */
        public WitnessUnregisterResponse unregister(WitnessUnregisterRequest request) throws IOException {
            if (!connected) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java

            // 4. Cleanup and unregistration
            assertTrue(mockService.unregisterWitness(regId));
            assertEquals(0, mockService.getRegistrationCount());
            assertFalse(mockService.hasRegistration(regId));
    
            // 5. Verify heartbeat fails after unregistration
            assertFalse(mockService.processHeartbeat(regId, 4));
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessClient.java

            /**
             * Called when a witness registration fails.
             *
             * @param registration the failed registration
             * @param error the error that occurred
             */
            void onRegistrationFailed(WitnessRegistration registration, Exception error);
    
            /**
             * Called when a witness registration expires.
             *
             * @param registration the expired registration
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/witness/WitnessClientTest.java

            WitnessRegistration registration = future.get(5, TimeUnit.SECONDS);
    
            assertNotNull(registration);
            assertEquals(WitnessRegistrationState.REGISTERED, registration.getState());
            assertEquals("\\\\server\\share", registration.getShareName());
            assertEquals(serverAddress, registration.getServerAddress());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  5. docs/smb3-features/06-witness-protocol-design.md

            log.error("Witness registration failed: {}", registration.getRegistrationId(), error);
        }
        
        @Override
        public void onRegistrationExpired(WitnessRegistration registration) {
            log.warn("Witness registration expired: {}", registration.getRegistrationId());
            // Could attempt re-registration here
        }
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  6. docs/SMB3_IMPLEMENTATION_PLAN.md

    ├── WitnessRegistration.java     - Client registration with witness
    ├── WitnessNotification.java     - Notification handling
    ├── ResourceChange.java          - Resource change events
    └── WitnessTransport.java       - Witness-specific RPC transport
    ```
    
    #### 6.2 Implementation Tasks
    - [ ] Implement Witness RPC protocol
    - [ ] Create witness service discovery
    - [ ] Implement client registration
    - [ ] Add notification callback mechanism
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. docs/smb3-features/05-rdma-smb-direct-design.md

        RDMA_WRITE,          // Remote direct write operations  
        RDMA_SEND_RECEIVE,   // Traditional send/receive with RDMA
        MEMORY_REGISTRATION, // Dynamic memory registration
        FAST_REGISTRATION   // Fast memory region registration
    }
    
    public class RdmaCapabilities {
        // RDMA transform capabilities
        public static final int SMB_DIRECT_RESPONSE_REQUESTED = 0x00000001;
        
        // Default RDMA settings
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java

            FunCustodial.checkSpecifiedProperty(this, propertyName, __specifiedProperties);
        }
    
        protected void registerSpecifiedProperty(String propertyName) { // basically called by modified property registration
            if (__specifiedProperties != null) { // normally false, true if e.g. setting after selected
                __specifiedProperties.addPropertyName(propertyName);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java

            this.notifications = new ArrayList<>();
        }
    
        /**
         * Creates a new WitnessAsyncNotify RPC message with the specified context handle.
         *
         * @param contextHandle the context handle from registration
         */
        public WitnessAsyncNotifyMessage(byte[] contextHandle) {
            super(WITNESS_ASYNC_NOTIFY);
            this.contextHandle = contextHandle != null ? contextHandle.clone() : new byte[20];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

            FunCustodial.checkSpecifiedProperty(this, propertyName, __specifiedProperties);
        }
    
        protected void registerSpecifiedProperty(String propertyName) { // basically called by modified property registration
            if (__specifiedProperties != null) { // normally false, true if e.g. setting after selected
                __specifiedProperties.addPropertyName(propertyName);
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top