Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 107 for cedric (0.37 sec)

  1. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

        "Track success/failure of MLIR graph optimization pass runs when fallback "
        "used",
        /* metric field */ "status");
    
    auto* mlir_function_pass_graph_conversion_count = monitoring::Counter<1>::New(
        /* metric name */
        "/tensorflow/core/mlir_function_pass_graph_conversion_count",
        /* metric description */
        "Track success/failure of Graph to MLIR conversions in function "
        "optimization pass",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. cmd/metrics-v3-handler.go

    			for _, d := range mg.Descriptors {
    				labels := slices.Clone(d.VariableLabels)
    				labels = append(labels, commonLabels...)
    				metric := metricDisplay{
    					Name:   mg.MetricFQN(d.Name),
    					Help:   d.Help,
    					Type:   d.Type.String(),
    					Labels: labels,
    				}
    				metrics = append(metrics, metric)
    			}
    		}
    	}
    
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 16:06:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. src/internal/trace/event.go

    	if id == 0 {
    		return NoStack
    	}
    	return Stack{table: e.table, id: id}
    }
    
    // Metric returns details about a Metric event.
    //
    // Panics if Kind != EventMetric.
    func (e Event) Metric() Metric {
    	if e.Kind() != EventMetric {
    		panic("Metric called on non-Metric event")
    	}
    	var m Metric
    	switch e.base.typ {
    	case go122.EvProcsChange:
    		m.Name = "/sched/gomaxprocs:threads"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  4. cmd/metrics.go

    	prometheus.MustRegister(minioVersionInfo)
    }
    
    // newMinioCollector describes the collector
    // and returns reference of minioCollector
    // It creates the Prometheus Description which is used
    // to define metric and  help string
    func newMinioCollector() *minioCollector {
    	return &minioCollector{
    		desc: prometheus.NewDesc("minio_stats", "Statistics exposed by MinIO server", nil, nil),
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/telemetry.go

    					// Next, get all matches.
    					// This is a bit funky because the matches are oneof of ENUM and customer metric. We normalize
    					// these to strings, so we may end up with a list like [REQUEST_COUNT, my-customer-metric].
    					// TODO: we always flatten ALL_METRICS into each metric mode. For some stats providers (prometheus),
    					// we are able to apply overrides to all metrics directly rather than duplicating the config.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

     *
     * Promoting the stability level of the metric is a responsibility of the component owner, since it
     * involves explicitly acknowledging support for the metric across multiple releases, in accordance with
     * the metric stability policy.
     */
    var (
    	listCacheCount = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. src/internal/trace/event_test.go

    func TestPanicEvent(t *testing.T) {
    	// Use a sync event for this because it doesn't have any extra metadata.
    	ev := syncEvent(nil, 0)
    
    	mustPanic(t, func() {
    		_ = ev.Range()
    	})
    	mustPanic(t, func() {
    		_ = ev.Metric()
    	})
    	mustPanic(t, func() {
    		_ = ev.Log()
    	})
    	mustPanic(t, func() {
    		_ = ev.Task()
    	})
    	mustPanic(t, func() {
    		_ = ev.Region()
    	})
    	mustPanic(t, func() {
    		_ = ev.Label()
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 784 bytes
    - Viewed (0)
  8. pkg/proxy/metrics/metrics.go

    	if n.client != nil {
    		counter, err := n.client.Get(n.counter)
    		if err != nil {
    			klog.ErrorS(err, "failed to collect nfacct counter", "counter", n.counter)
    		} else {
    			metric, err := metrics.NewConstMetric(n.description, metrics.CounterValue, float64(counter.Packets))
    			if err != nil {
    				klog.ErrorS(err, "failed to create constant metric")
    			} else {
    				ch <- metric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/prometheus/kube.go

    	for _, forwarder := range c.forwarder {
    		forwarder.Close()
    	}
    	return nil
    }
    
    type Query struct {
    	Metric      string
    	Aggregation string
    	Labels      map[string]string
    }
    
    func (q Query) String() string {
    	query := q.Metric + `{`
    
    	keys := []string{}
    	for k := range q.Labels {
    		keys = append(keys, k)
    	}
    	sort.Strings(keys)
    	for _, k := range keys {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. src/testing/benchmark.go

    // (such as "allocs/op"), ReportMetric will override that metric.
    // Setting "ns/op" to 0 will suppress that built-in metric.
    func (b *B) ReportMetric(n float64, unit string) {
    	if unit == "" {
    		panic("metric unit must not be empty")
    	}
    	if strings.IndexFunc(unit, unicode.IsSpace) >= 0 {
    		panic("metric unit must not contain whitespace")
    	}
    	b.extra[unit] = n
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top