Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getClusterName (0.06 sec)

  1. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

        private ClusterHealthResponse createMockHealthResponse(String clusterName, ClusterHealthStatus status) {
            return new ClusterHealthResponse() {
                @Override
                public String getClusterName() {
                    return clusterName;
                }
    
                @Override
                public ClusterHealthStatus getStatus() {
                    return status;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbSessionImpl.java

            if (isWitnessServiceAvailable(serverAddress)) {
                return serverAddress;
            }
    
            // Query for cluster witness service via DNS
            try {
                String clusterName = getClusterName(serverAddress);
                if (clusterName != null) {
                    return InetAddress.getByName(clusterName + "-witness");
                }
            } catch (Exception e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
Back to top