Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 158 for cedric (0.13 sec)

  1. pkg/proxy/util/nfacct/nfacct_linux_test.go

    		err          error
    		netlinkCalls int
    	}{
    		{
    			name:        "valid",
    			counterName: "metric-1",
    			handler:     &fakeHandler{},
    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    			name:        "add duplicate counter",
    			counterName: "metric-2",
    			handler: &fakeHandler{
    				errs: []error{syscall.EBUSY},
    			},
    			err: ErrObjectAlreadyExists,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    )
    
    var registerMetrics sync.Once
    
    // Register all metrics.
    func Register() {
    	registerMetrics.Do(func() {
    		for _, metric := range metrics {
    			legacyregistry.MustRegister(metric)
    		}
    	})
    }
    
    // Reset all metrics.
    func Reset() {
    	for _, metric := range metrics {
    		metric.Reset()
    	}
    }
    
    // UpdateInflightRequestMetrics reports concurrency metrics classified by
    // mutating vs Readonly.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExternalMetricSource) DeepCopyInto(out *ExternalMetricSource) {
    	*out = *in
    	in.Metric.DeepCopyInto(&out.Metric)
    	in.Target.DeepCopyInto(&out.Target)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalMetricSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 19.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    // Register all metrics.
    func Register() {
    	registerMetrics.Do(func() {
    		for _, metric := range metrics {
    			legacyregistry.MustRegister(metric)
    		}
    	})
    }
    
    type resettable interface {
    	Reset()
    }
    
    // Reset all resettable metrics to zero
    func Reset() {
    	for _, metric := range metrics {
    		if rm, ok := metric.(resettable); ok {
    			rm.Reset()
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta2/zz_generated.deepcopy.go

    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExternalMetricSource) DeepCopyInto(out *ExternalMetricSource) {
    	*out = *in
    	in.Metric.DeepCopyInto(&out.Metric)
    	in.Target.DeepCopyInto(&out.Target)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExternalMetricSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 17.8K bytes
    - Viewed (0)
Back to top