Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setClusterName (0.56 sec)

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

                                postcard.dryrun();
                            }
                            postcard.setHostname(systemHelper.getHostname());
                            postcard.setClustername(ping.getClusterName());
                            postcard.setClusterstatus(ping.getClusterStatus());
                        });
                    } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.4K 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 clustername The parameter value of clustername. (NotNull)
         */
        public void setClustername(String clustername) {
            registerVariable("clustername", clustername);
        }
    
        /**
         * Set the value of clusterstatus, used in parameter comment. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

             */
            T build(R response, H hit);
        }
    
        /**
         * Sets the name of the search engine cluster.
         *
         * @param clusterName the cluster name
         */
        public void setClusterName(final String clusterName) {
            this.clusterName = clusterName;
        }
    
        /**
         * Gets information about the search engine.
         *
         * @return the engine information
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top