Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 280 for Cedric (0.24 sec)

  1. .mailmap

    Adam Murdoch <******@****.***> <******@****.***>
    Adrian Kelly <******@****.***> <******@****.***>
    Benjamin Muschko <******@****.***> <******@****.***>
    Cedric Champeau <cedric@gradle.com>
    Cedric Champeau <cedric@gradle.com> <cedric******@****.***>
    Cedric Champeau <cedric@gradle.com> <cedric******@****.***>
    Daz DeBoer <******@****.***>
    Daz DeBoer <******@****.***> <******@****.***>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 06:34:28 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  2. cmd/data-scanner-metric.go

    		return true
    	})
    	return i
    }
    
    // lifetime returns the lifetime count of the specified metric.
    func (p *scannerMetrics) lifetime(m scannerMetric) uint64 {
    	if m >= scannerMetricLast {
    		return 0
    	}
    	val := atomic.LoadUint64(&p.operations[m])
    	return val
    }
    
    // lastMinute returns the last minute statistics of a metric.
    // m should be < scannerMetricLastRealtime
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Sep 25 05:15:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. releasenotes/notes/istiod-cluster-metric.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
      **Added** a new metric (`istiod_managed_clusters`) to `istiod` to track the number of clusters managed by an
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 23 01:50:36 UTC 2021
    - 209 bytes
    - Viewed (0)
  4. releasenotes/notes/add-istiod-uptime-metric.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 09 00:01:29 UTC 2021
    - 139 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/metrics/testutil_test.go

    		if mf.GetName() == name {
    			for _, metric := range mf.GetMetric() {
    				if testutil.LabelsMatch(metric, expectedLabels) {
    					gotLabelCount := len(metric.GetLabel())
    					wantLabelCount := len(expectedLabels)
    					if wantLabelCount != gotLabelCount {
    						t.Errorf("Got metric with %d labels, but wanted %d labels. Wanted %#+v for %s",
    							gotLabelCount, wantLabelCount, expectedLabels, metric.String())
    						continue
    					}
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 24 04:26:43 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  6. pkg/scheduler/metrics/metric_recorder.go

    }
    
    // Dec decreases a metric counter by 1, in an atomic way
    func (r *PendingPodsRecorder) Dec() {
    	r.recorder.Dec()
    }
    
    // Clear set a metric counter to 0, in an atomic way
    func (r *PendingPodsRecorder) Clear() {
    	r.recorder.Set(float64(0))
    }
    
    // metric is the data structure passed in the buffer channel between the main framework thread
    // and the metricsRecorder goroutine.
    type metric struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 07:27:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/volume_stat_calculator.go

    	)
    
    	if metric.Available != nil {
    		available = uint64(metric.Available.Value())
    	}
    	if metric.Capacity != nil {
    		capacity = uint64(metric.Capacity.Value())
    	}
    	if metric.Used != nil {
    		used = uint64(metric.Used.Value())
    	}
    	if metric.Inodes != nil {
    		inodes = uint64(metric.Inodes.Value())
    	}
    	if metric.InodesFree != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  8. pkg/monitoring/monitortest/test.go

    func (m *MetricsTest) Metrics() []Metric {
    	m.t.Helper()
    	res, err := m.reg.Gather()
    	if err != nil {
    		m.t.Fatal(err)
    	}
    	metrics := []Metric{}
    	for _, metric := range res {
    		if len(metric.Metric) == 0 {
    			m.t.Logf("%v: no rows", *metric.Name)
    		}
    		for _, row := range metric.Metric {
    			m := Metric{Name: *metric.Name, Labels: map[string]string{}, Value: display(row)}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. pkg/monitoring/disabled.go

    	name string
    }
    
    // Decrement implements Metric
    func (dm *disabledMetric) Decrement() {}
    
    // Increment implements Metric
    func (dm *disabledMetric) Increment() {}
    
    // Name implements Metric
    func (dm *disabledMetric) Name() string {
    	return dm.name
    }
    
    // Record implements Metric
    func (dm *disabledMetric) Record(value float64) {}
    
    // RecordInt implements Metric
    func (dm *disabledMetric) RecordInt(value int64) {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/runtime/metrics/value.go

    	return v.kind
    }
    
    // Uint64 returns the internal uint64 value for the metric.
    //
    // If v.Kind() != KindUint64, this method panics.
    func (v Value) Uint64() uint64 {
    	if v.kind != KindUint64 {
    		panic("called Uint64 on non-uint64 metric value")
    	}
    	return v.scalar
    }
    
    // Float64 returns the internal float64 value for the metric.
    //
    // If v.Kind() != KindFloat64, this method panics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top