- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 96 for Protocol (0.06 sec)
-
docs/smb3-features/06-witness-protocol-design.md
# Witness Protocol Feature - Detailed Design Document ## 1. Overview The SMB Witness Protocol enables rapid notification of resource changes in a clustered file server environment. It provides fast failover capabilities by allowing clients to register for notifications about server node availability, share movement, and other critical cluster events. ## 2. Protocol Specification Reference - **MS-SWN**: Service Witness Protocol Specification
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
* * @param protocol the protocol name to add (without colon suffix) */ public void addWebProtocol(final String protocol) { final String prefix = protocol + ":"; if (stream(webProtocols).get(stream -> stream.anyMatch(s -> s.equals(prefix)))) { logger.debug("Web protocols already contains: protocol={}", protocol); return; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 12.4K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java
} @Test @DisplayName("Should handle null protocol ID") void testNullProtocolId() { // Protocol ID is a constant in transform header, not settable // This test is not applicable - the protocol ID is always TRANSFORM_PROTOCOL_ID assertTrue(true); } @Test @DisplayName("Should handle invalid protocol ID length")Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/jcifs/http/HandlerTest.java
handlers.clear(); } /** * Pre-populates the protocol handlers cache with mock handlers for testing. * This avoids the need for actual protocol handlers to be available. */ private void setupMockProtocolHandlers() throws Exception { Field handlersField = Handler.class.getDeclaredField("PROTOCOL_HANDLERS"); handlersField.setAccessible(true);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
* * @param protocol * The URL protocol. Must not be {@literal null} or empty. * @param factory * The {@link Traverser} factory for the protocol. Must not be {@literal null}. */ public static void addTraverserFactory(final String protocol, final TraverserFactory factory) { assertArgumentNotEmpty("protocol", protocol);Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
// Protocol errors INVALID_PARAMETER("Invalid parameter", ErrorCategory.PROTOCOL, false), NOT_SUPPORTED("Operation not supported", ErrorCategory.PROTOCOL, false), INVALID_PROTOCOL("Invalid protocol", ErrorCategory.PROTOCOL, false), MESSAGE_TOO_LARGE("Message too large", ErrorCategory.PROTOCOL, false), // Resource errorsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/jcifs/util/ServerResponseValidator.java
* * Features: * - Buffer bounds checking * - Integer overflow prevention * - Size validation * - Protocol compliance checking * - Malformed response detection */ public class ServerResponseValidator { private static final Logger log = LoggerFactory.getLogger(ServerResponseValidator.class); // Protocol limits private static final int MAX_SMB_MESSAGE_SIZE = 16 * 1024 * 1024; // 16MB max for SMB3Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
} } } } /** * Initializes the minimum and maximum protocol versions from string values. * * @param minStr string representation of minimum protocol version * @param maxStr string representation of maximum protocol version */ protected void initProtocolVersions(final String minStr, final String maxStr) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * Parses and filters URL patterns from text based on protocol types. * Processes each line of the input text, filtering URLs based on web and file protocol support. * * @param text the raw text containing URL patterns, one per line * @param web true if web protocol URLs should be included * @param file true if file protocol URLs should be includedRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0)