Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for cedric (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    	// CountMetricPollPeriod specifies how often should count metric be updated
    	CountMetricPollPeriod time.Duration
    	// DBMetricPollInterval specifies how often should storage backend metric be updated.
    	DBMetricPollInterval time.Duration
    	// HealthcheckTimeout specifies the timeout used when checking health
    	HealthcheckTimeout time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/cmd/trace/jsontrace_test.go

    	for _, e := range data.Events {
    		if e.Phase == "C" && e.Name == "Heap" {
    			j, _ := json.Marshal(e.Arg)
    			var metric format.HeapCountersArg
    			json.Unmarshal(j, &metric)
    			metrics = append(metrics, metric)
    		}
    	}
    	return
    }
    
    func recordJSONTraceHandlerResponse(t *testing.T, parsed *parsedTrace) format.Data {
    	h := JSONTraceHandler(parsed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. RELEASE.md

        *   `model.add_loss(symbolic_tensor)` should work in ambient eager.
        *   Update metric name to always reflect what the user has given in compile.
            Affects following cases
        *   When name is given as 'accuracy'/'crossentropy'
        *   When an aliased function name is used eg. 'mse'
        *   Removing the `weighted` prefix from weighted metric names.
        *   Allow non-Tensors through v2 losses.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. src/internal/trace/value.go

    // to that possibility.
    func (v Value) Kind() ValueKind {
    	return v.kind
    }
    
    // Uint64 returns the uint64 value for a MetricSampleUint64.
    //
    // Panics if this metric sample's Kind is not MetricSampleUint64.
    func (v Value) Uint64() uint64 {
    	if v.kind != ValueUint64 {
    		panic("Uint64 called on Value of a different Kind")
    	}
    	return v.scalar
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

    	case *model.Scalar:
    		numSamples = 1
    	default:
    		return fmt.Errorf("unknown metric value type: %T", v)
    	}
    	if includeQuery(query, excluded) {
    		if numSamples == 0 {
    			return fmt.Errorf("expected a metric value for '%s', found no samples: %#v", query, value)
    		}
    	} else {
    		if numSamples != 0 {
    			scopes.Framework.Infof("Filtered out metric '%v', but got samples: %v", query, numSamples)
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    `,
    		},
    		{
    			name: "multiple metric",
    			envoy: `# TYPE my_metric counter
    my_metric{} 0
    `,
    			app: `# TYPE my_other_metric counter
    my_other_metric{} 0
    `,
    			output: `# TYPE my_metric counter
    my_metric{} 0
    # TYPE my_other_metric counter
    my_other_metric{} 0
    `,
    		},
    		{
    			name:  "agent metric",
    			envoy: ``,
    			app:   ``,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. cmd/metrics-v3.go

    	// Gatherers for non-bucket MetricsGroup's
    	mgGatherers map[collectorPath]prometheus.Gatherer
    
    	collectorPaths []collectorPath
    }
    
    func newMetricGroups(r *prometheus.Registry) *metricsV3Collection {
    	// Create all metric groups.
    	apiRequestsMG := NewMetricsGroup(apiRequestsCollectorPath,
    		[]MetricDescriptor{
    			apiRejectedAuthTotalMD,
    			apiRejectedHeaderTotalMD,
    			apiRejectedTimestampTotalMD,
    			apiRejectedInvalidTotalMD,
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. cluster/addons/metrics-server/metrics-server-deployment.yaml

            kubernetes.io/os: linux
          containers:
          - name: metrics-server
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            command:
            - /metrics-server
            - --metric-resolution=15s
            - --kubelet-use-node-status-port
            - --kubelet-insecure-tls
            - --kubelet-preferred-address-types=InternalIP,Hostname,InternalDNS,ExternalDNS,ExternalIP
            - --cert-dir=/tmp
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    					Metrics: []autoscaling.MetricSpec{
    						{
    							Type: autoscaling.ExternalMetricSourceType,
    							External: &autoscaling.ExternalMetricSource{
    								Metric: autoscaling.MetricIdentifier{
    									Name:     "some-external-metric",
    									Selector: metricLabelSelector,
    								},
    								Target: autoscaling.MetricTarget{
    									Type:         autoscaling.AverageValueMetricType,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/node/minio-node.json

              "format": "table",
              "hide": false,
              "instant": true,
              "interval": "",
              "intervalFactor": 1,
              "legendFormat": "",
              "metric": "process_start_time_seconds",
              "refId": "A",
              "step": 60
            }
          ],
          "title": "Total Drives",
          "type": "stat"
        },
        {
          "datasource": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top