- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 64 for registrations (0.11 sec)
-
src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 8.6K 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) -
src/main/java/jcifs/internal/smb2/rdma/tcp/TcpMemoryRegion.java
import jcifs.internal.smb2.rdma.RdmaMemoryRegion; /** * TCP memory region implementation. * * For TCP fallback, memory regions are just wrappers around * ByteBuffers since no real RDMA registration is needed. */ public class TcpMemoryRegion extends RdmaMemoryRegion { private static final AtomicInteger keyGenerator = new AtomicInteger(1000); /** * Create new TCP memory region *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/disni/DisniMemoryRegion.java
* memory regions for high-performance RDMA operations. * * Note: This is a skeleton implementation. A real implementation would * require proper DiSNI integration with actual memory registration. */ public class DisniMemoryRegion extends RdmaMemoryRegion { private static final Logger log = LoggerFactory.getLogger(DisniMemoryRegion.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
* * @param buffer memory buffer to register * @param access access permissions for the memory region * @return registered memory region * @throws IOException if memory registration fails */ RdmaMemoryRegion registerMemory(ByteBuffer buffer, EnumSet<RdmaAccess> access) throws IOException; /** * Get provider name (e.g., "InfiniBand", "iWARP", "RoCE", "TCP Fallback") *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
public void onRegistrationFailed(WitnessRegistration registration, Exception error) { log.error("Witness registration failed: {}", registration.getRegistrationId(), error); } @Override public void onRegistrationExpired(WitnessRegistration registration) { log.warn("Witness registration expired: {}", registration.getRegistrationId());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.9.md
* update gRPC to v1.6.0 to pick up data race fix grpc/grpc-go#1316 ([#53128](https://github.com/kubernetes/kubernetes/pull/53128), [@dixudx](https://github.com/dixudx)) * admission webhook registrations without a specific failure policy default to failing closed. ([#54162](https://github.com/kubernetes/kubernetes/pull/54162), [@deads2k](https://github.com/deads2k))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Tue Nov 16 10:46:27 UTC 2021 - 313.7K 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) -
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/core/misc/DisposableUtil.java
disposables.addLast(disposable); } /** * Registers a disposable resource at the beginning. * <p> * Resources are disposed of in the reverse order of their registration, so resources registered at the beginning will be disposed of last. * </p> * * @param disposable * A disposable resource. Must not be {@literal null}. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0)