Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for getClusterName (0.23 sec)

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

                    }
                }
                resultBuf.append("Status of ").append(ping.getClusterName()).append(" is changed to ").append(ping.getClusterStatus())
                        .append('.');
            } else if (status == 0) {
                resultBuf.append(ping.getClusterName()).append(" is alive.");
            } else {
                resultBuf.append(ping.getClusterName()).append(" is not available.");
            }
    
            return resultBuf.toString();
    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/entity/PingResponse.java

        private String message = StringUtil.EMPTY;
    
        public PingResponse(final ClusterHealthResponse response) {
            status = response.getStatus() == ClusterHealthStatus.RED ? 1 : 0;
            clusterName = response.getClusterName();
            clusterStatus = response.getStatus().toString();
            final Set<String> fieldSet = ComponentUtil.getFessConfig().getApiPingEsFieldSet();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. pkg/kube/inject/template.go

    		pc.BinaryPath = ""
    	}
    	if pc.ControlPlaneAuthPolicy == defaults.ControlPlaneAuthPolicy {
    		pc.ControlPlaneAuthPolicy = 0
    	}
    	if x, ok := pc.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster); ok {
    		if x.ServiceCluster == defaults.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster).ServiceCluster {
    			pc.ClusterName = nil
    		}
    	}
    
    	if proto.Equal(pc.DrainDuration, defaults.DrainDuration) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 02:12:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/config/config.go

    				"This is not recommended and may lead to performance issues. "+
    				"CPU count: %d, CPU Limit: %d.", runtime.NumCPU(), CPULimit)
    		}
    	}
    
    	if x, ok := proxyConfig.GetClusterName().(*meshconfig.ProxyConfig_ServiceCluster); ok {
    		if x.ServiceCluster == "" {
    			proxyConfig.ClusterName = &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: serviceCluster}
    		}
    	}
    	// resolve statsd address
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java

                final ClusterHealthResponse response =
                        esClient.admin().cluster().prepareHealth().execute().actionGet(fessConfig.getIndexHealthTimeout());
                engineObj.clusterName = response.getClusterName();
                engineObj.numberOfNodes = response.getNumberOfNodes();
                engineObj.numberOfDataNodes = response.getNumberOfDataNodes();
                engineObj.activePrimaryShards = response.getActivePrimaryShards();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. pkg/kube/inject/inject.go

    	return tag + "-" + imageType
    }
    
    func extractClusterAndNetwork(params InjectionParameters) (string, string) {
    	metadata := &params.pod.ObjectMeta
    	cluster := params.valuesConfig.asStruct.GetGlobal().GetMultiCluster().GetClusterName()
    	// TODO allow overriding the values.global network in injection with the system namespace label
    	network := params.valuesConfig.asStruct.GetGlobal().GetNetwork()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                  << " instances";
        }
      }
    
      struct EdgeInfo {
        absl::string_view node_name;
        std::optional<absl::string_view> cluster_name;
    
        absl::string_view GetClusterName() const {
          return cluster_name ? *cluster_name : "[none]";
        }
    
        std::pair<absl::string_view, std::optional<absl::string_view>> AsPair()
            const {
          return {node_name, cluster_name};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation.go

    		errs = multierror.Append(errs, errors.New("config path must be set"))
    	}
    
    	if config.BinaryPath == "" {
    		errs = multierror.Append(errs, errors.New("binary path must be set"))
    	}
    
    	clusterName := config.GetClusterName()
    	switch naming := clusterName.(type) {
    	case *meshconfig.ProxyConfig_ServiceCluster:
    		if naming.ServiceCluster == "" {
    			errs = multierror.Append(errs, errors.New("service cluster must be specified"))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    func (x *MultiClusterConfig) GetEnabled() *wrapperspb.BoolValue {
    	if x != nil {
    		return x.Enabled
    	}
    	return nil
    }
    
    func (x *MultiClusterConfig) GetClusterName() string {
    	if x != nil {
    		return x.ClusterName
    	}
    	return ""
    }
    
    func (x *MultiClusterConfig) GetGlobalDomainSuffix() string {
    	if x != nil {
    		return x.GlobalDomainSuffix
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top