Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for version_info (0.69 sec)

  1. cmd/metrics.go

    			Buckets: []float64{.05, .1, .25, .5, 1, 2.5, 5, 10},
    		},
    		[]string{"api", "bucket"},
    	)
    	minioVersionInfo = prometheus.NewGaugeVec(
    		prometheus.GaugeOpts{
    			Namespace: "minio",
    			Name:      "version_info",
    			Help:      "Version of current MinIO server instance",
    		},
    		[]string{
    			// current version
    			"version",
    			// commit-id of the current version
    			"commit",
    		},
    	)
    )
    
    const (
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 02 06:48:36 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump_diff.json

    {
      "configs": [
        {
          "@type": "type.googleapis.com/envoy.admin.v3.ClustersConfigDump",
          "version_info": "2024-03-04T08:37:44Z/4",
          "dynamic_active_clusters": [
            {
              "cluster": {
                "@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster",
                "name": "inbound-vip|9999|http|ratings.default.svc.cluster.local",
                "type": "EDS",
                "transport_socket": {
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

    {
      "configs": [
        {
          "@type": "type.googleapis.com/envoy.admin.v3.ClustersConfigDump",
          "version_info": "2024-03-04T08:37:44Z/4",
          "dynamic_active_clusters": [
            {
              "cluster": {
                "@type": "type.googleapis.com/envoy.config.cluster.v3.Cluster",
                "name": "inbound-vip|9080|http|ratings.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
    Json
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/list.md

    |:------------------------------|:---------------------------------------|
    | `minio_software_commit_info`  | Git commit hash for the MinIO release. |
    | `minio_software_version_info` | MinIO Release tag for the server.      |
    
    ## Drive Metrics
    
    | Name                                   | Description                                                         |
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            }
        }
    
        private void merge(
                String key,
                Map<String, VersionInfo> infos,
                String timestamp,
                String version,
                ArtifactRepository repository) {
            VersionInfo info = infos.get(key);
            if (info == null) {
                info = new VersionInfo(timestamp, version, repository);
                infos.put(key, info);
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  6. istioctl/pkg/authz/analyzer_test.go

    			DynamicListeners: []*envoy_admin.ListenersConfigDump_DynamicListener{
    				{
    					Name: "10.102.11.148_15021",
    					ActiveState: &envoy_admin.ListenersConfigDump_DynamicListenerState{
    						VersionInfo: "2023-06-20T09:07:41Z/3",
    						Listener: &anypb.Any{
    							TypeUrl: "type.googleapis.com/envoy.config.listener.v3.Listener",
    						},
    						LastUpdated: timestamppb.Now(),
    					},
    					ClientStatus: 453,
    				},
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  7. cmd/metrics-v2.go

    	latencyMicroSec MetricName = "latency_us"
    	latencyNanoSec  MetricName = "latency_ns"
    
    	commitInfo  MetricName = "commit_info"
    	usageInfo   MetricName = "usage_info"
    	versionInfo MetricName = "version_info"
    
    	sizeDistribution    = "size_distribution"
    	versionDistribution = "version_distribution"
    	ttfbDistribution    = "seconds_distribution"
    	ttlbDistribution    = "ttlb_seconds_distribution"
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
  8. configure.py

      """Run find_cuda_config.py and return cuda_toolkit_path, or None."""
    
      def maybe_encode_env(env):
        """Encodes unicode in env to str on Windows python 2.x."""
        if not is_windows() or sys.version_info[0] != 2:
          return env
        for k, v in env.items():
          if isinstance(k, unicode):
            k = k.encode('ascii')
          if isinstance(v, unicode):
            v = v.encode('ascii')
          env[k] = v
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/status_test.go

    	resources := make([]*anypb.Any, 0)
    	for _, input := range configInputs {
    		resources = append(resources, protoconv.MessageToAny(newXdsClientConfig(input)))
    	}
    
    	return &discovery.DiscoveryResponse{
    		VersionInfo: "1.1",
    		TypeUrl:     clientConfigType,
    		Resources:   resources,
    		ControlPlane: &core.ControlPlane{
    			Identifier: string(identifier),
    		},
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 08 08:38:19 GMT 2024
    - 6.5K bytes
    - Viewed (0)
Back to top