Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setClusterstatus (0.25 sec)

  1. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                            }
                            postcard.setHostname(systemHelper.getHostname());
                            postcard.setClustername(ping.getClusterName());
                            postcard.setClusterstatus(ping.getClusterStatus());
                        });
                    } catch (final Exception e) {
                        logger.warn("Failed to send a test mail.", e);
                    } finally {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param clusterstatus The parameter value of clusterstatus. (NotNull)
         */
        public void setClusterstatus(String clusterstatus) {
            registerVariable("clusterstatus", clusterstatus);
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/etcd/etcd.go

    // CheckClusterHealth returns nil for status Up or error for status Down
    func (c *Client) CheckClusterHealth() error {
    	_, err := c.getClusterStatus()
    	return err
    }
    
    // getClusterStatus returns nil for status Up (along with endpoint status response map) or error for status Down
    func (c *Client) getClusterStatus() (map[string]*clientv3.StatusResponse, error) {
    	clusterStatus := make(map[string]*clientv3.StatusResponse)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/PingResponse.java

            }
        }
    
        public int getStatus() {
            return status;
        }
    
        public String getClusterName() {
            return clusterName;
        }
    
        public String getClusterStatus() {
            return clusterStatus;
        }
    
        public String getMessage() {
            return message;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top