- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for registration (0.05 sec)
-
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) -
src/main/java/jcifs/internal/witness/WitnessClient.java
* * @param registration the witness registration */ private void startAsyncNotificationMonitoring(WitnessRegistration registration) { String registrationId = registration.getRegistrationId(); CompletableFuture<Void> asyncTask = CompletableFuture.runAsync(() -> { byte[] contextHandle = registration.getContextHandle();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
} else { response.setError(message.getErrorMessage()); log.warn("Witness registration failed: {}", message.getErrorMessage()); } return response; } catch (Exception e) { throw new IOException("Witness register RPC failed", e); } } /** * Performs witness unregistration.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
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) -
src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java
} /** * Test the complete workflow of witness registration, notification, and cleanup */ @Test void testCompleteWitnessWorkflow() throws Exception { // Simulate complete witness workflow // 1. Service discovery and registration assertEquals(0, mockService.getRegistrationCount()); String regId =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 9.8K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java
assertSame(testRule, rules.get(0)); assertSame(testRule, rules.get(1)); assertSame(testRule, rules.get(2)); } /** * Test property changes after registration */ public void test_propertyChangesAfterRegistration() { TestResponseProcessor processor1 = new TestResponseProcessor(); testRule.setRuleId("originalId");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 21.9K bytes - Viewed (0)