Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for clustername (0.67 sec)

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

        // Helper method to create mock ClusterHealthResponse
        private ClusterHealthResponse createMockHealthResponse(String clusterName, ClusterHealthStatus status) {
            return new ClusterHealthResponse() {
                @Override
                public String getClusterName() {
                    return clusterName;
                }
    
                @Override
                public ClusterHealthStatus getStatus() {
    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/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)
  3. src/test/java/org/codelibs/fess/entity/PingResponseTest.java

        }
    
        public void test_fieldSetConfiguration() {
            // Test that field set configuration is properly handled
            Set<String> fieldSet = new HashSet<>();
            fieldSet.add("cluster_name");
            fieldSet.add("status");
    
            FessConfig mockConfig = new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/timer/HotThreadMonitorTarget.java

                        .setThreads(threads)
                        .setTimeout(timeout)
                        .setType(type)
                        .execute()
                        .actionGet(timeout);
                append(buf, "cluster_name", () -> response.getClusterName().value()).append(',');
                final String hotThreads = response.getNodesMap().entrySet().stream().map(e -> {
                    final StringBuilder tempBuf = new StringBuilder();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.7K bytes
    - Viewed (0)
Back to top