Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CLUSTER_WITNESS (0.06 sec)

  1. src/test/java/jcifs/internal/witness/WitnessEnumTest.java

        }
    
        @Test
        void testEnumToStringConversions() {
            // Test that enum toString methods work properly
            assertEquals("CLUSTER_WITNESS", WitnessServiceType.CLUSTER_WITNESS.toString());
            assertEquals("FILE_SERVER_WITNESS", WitnessServiceType.FILE_SERVER_WITNESS.toString());
            assertEquals("SCALE_OUT_WITNESS", WitnessServiceType.SCALE_OUT_WITNESS.toString());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessServiceType.java

     * clustered file server environments.
     */
    public enum WitnessServiceType {
        /**
         * Cluster-aware witness service for general cluster resources
         */
        CLUSTER_WITNESS,
    
        /**
         * Individual file server witness for standalone servers
         */
        FILE_SERVER_WITNESS,
    
        /**
         * Scale-out file server witness for scale-out deployments
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java

        void testRegistrationIdUniqueness() throws Exception {
            WitnessRegistration registration2 =
                    new WitnessRegistration("\\\\server\\share2", InetAddress.getByName("192.168.1.101"), WitnessServiceType.CLUSTER_WITNESS);
    
            assertNotEquals(registration.getRegistrationId(), registration2.getRegistrationId());
        }
    
        @Test
        void testFlagsModification() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. docs/smb3-features/06-witness-protocol-design.md

    - **MS-RRP**: Windows Remote Registry Protocol (for witness service discovery)
    
    ## 3. Witness Architecture
    
    ### 3.1 Witness Service Types
    ```java
    public enum WitnessServiceType {
        CLUSTER_WITNESS,     // Cluster-aware witness service
        FILE_SERVER_WITNESS, // Individual file server witness
        SCALE_OUT_WITNESS,   // Scale-out file server witness
        DFS_WITNESS         // DFS namespace witness
    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
Back to top