Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 532 for Cedric (0.17 sec)

  1. pkg/monitoring/distribution.go

    package monitoring
    
    import (
    	"context"
    
    	api "go.opentelemetry.io/otel/metric"
    
    	"istio.io/istio/pkg/log"
    )
    
    type distribution struct {
    	baseMetric
    	d api.Float64Histogram
    	// precomputedRecordOption is just a precomputation to avoid allocations on each record call
    	precomputedRecordOption []api.RecordOption
    }
    
    var _ Metric = &distribution{}
    
    func newDistribution(o options) *distribution {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. src/testing/benchmark_test.go

    					return cmp.Compare(a, b)
    				})
    			}
    		})
    
    		// NOTE: Report each metric once, after all of the parallel
    		// calls have completed.
    
    		// This metric is per-operation, so divide by b.N and
    		// report it as a "/op" unit.
    		b.ReportMetric(float64(compares.Load())/float64(b.N), "compares/op")
    		// This metric is per-time, so divide by b.Elapsed and
    		// report it as a "/ns" unit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/rules/JacocoPluginCoverageVerificationIntegrationTest.groovy

            [Sufficient.LINE_METRIC_COVERED_RATIO]               | 'line metric with covered ratio'
            [Sufficient.CLASS_METRIC_MISSED_COUNT]               | 'class metric with missed count'
            [Sufficient.LINE_METRIC_COVERED_RATIO,
             Sufficient.CLASS_METRIC_MISSED_COUNT]               | 'line and class metric'
        }
    
        def "can define rule with insufficient coverage for #description"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. cmd/kube-proxy/proxy.go

    package main
    
    import (
    	"os"
    
    	"k8s.io/component-base/cli"
    	_ "k8s.io/component-base/logs/json/register"
    	_ "k8s.io/component-base/metrics/prometheus/clientgo" // for client metric registration
    	_ "k8s.io/component-base/metrics/prometheus/version"  // for version metric registration
    	"k8s.io/kubernetes/cmd/kube-proxy/app"
    )
    
    func main() {
    	command := app.NewProxyCommand()
    	code := cli.Run(command)
    	os.Exit(code)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 06:33:33 UTC 2023
    - 989 bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/metrics/metrics.go

    func (c *OperationStartTimeCache) Has(key string) bool {
    	_, exists := c.cache.Load(key)
    	return exists
    }
    
    // RecordMetric records either an error count metric or a latency metric if there
    // exists a start timestamp entry in the cache. For a successful operation, i.e.,
    // err == nil, the corresponding timestamp entry will be removed from cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 13:09:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/filters/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.
     */
    const (
    	successLabel = "success"
    	failureLabel = "failure"
    	errorLabel   = "error"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 20 13:35:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. tests/integration/telemetry/policy/helper_test.go

    	//    client -------> Hits listener 0.0.0.0_80 cluster
    	//    Metric is istio_requests_total i.e. HTTP
    	//
    	// 2. https case:
    	//    client ----> Hits no listener -> 0.0.0.0_150001 -> ALLOW_ANY/REGISTRY_ONLY
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 3. https conflict case:
    	//    client ----> Hits listener 0.0.0.0_9443
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 4. http_egress
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. 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)
Back to top