Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for cedric (0.26 sec)

  1. src/net/net_windows_test.go

    	//----------------------------------------------
    	//IfLuid                             : ethernet_6
    	//IfIndex                            : 11
    	//State                              : connected
    	//Metric                             : 10
    	//...
    	var name string
    	lines := bytes.Split(out, []byte{'\r', '\n'})
    	for _, line := range lines {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    			FilterPlugin: f.filterPlugins[i],
    			metric:       metrics.PluginEvaluationTotal.WithLabelValues(pl.Name(), metrics.Filter, f.profileName),
    		}
    	}
    
    	// Cache metric streams for prescore and score plugins.
    	for i, pl := range f.preScorePlugins {
    		f.preScorePlugins[i] = &instrumentedPreScorePlugin{
    			PreScorePlugin: f.preScorePlugins[i],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. cmd/metrics-v3-api.go

    	m.Set(apiTrafficSentBytes, float64(connStats.s3OutputBytes), "type", "s3")
    	m.Set(apiTrafficRecvBytes, float64(connStats.s3InputBytes), "type", "s3")
    	return nil
    }
    
    // Metric Descriptions for bucket level S3 metrics.
    var (
    	bucketAPITrafficSentBytesMD = NewCounterMD(apiTrafficSentBytes,
    		"Total number of bytes received for a bucket", "bucket", "type")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.29.md

    - Introduced new apiserver metric `apiserver_flowcontrol_current_inqueue_seats`. This metric is analogous to `apiserver_flowcontrol_current_inqueue_requests`, but tracks the total number of seats, as each request can take more than one seat. ([#119385](https://github.com/kubernetes/kubernetes/pull/119385), [@andrewsykim](https://github.com/andrewsykim))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - Scheduler now waits for handlers to finish syncing before the scheduling cycles start. ([#116729](https://github.com/kubernetes/kubernetes/pull/116729), [@AxeZhan](https://github.com/AxeZhan))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  6. common/config/.golangci.yml

              - "!**/pkg/tracing/**"
            deny:
              - pkg: go.opentelemetry.io/otel
                desc: "do not use OpenTelemetry directly; use pkg/monitoring"
              - pkg: go.opentelemetry.io/otel/metric
                desc: "do not use OpenTelemetry directly; use pkg/monitoring"
          DenyProtobufV1:
            files:
              - $all
            deny:
              - pkg: github.com/golang/protobuf/ptypes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/context.go

    	if e != nil && e.NetworksWatcher != nil {
    		e.NetworksWatcher.AddNetworksHandler(h)
    	}
    }
    
    func (e *Environment) AddMetric(metric monitoring.Metric, key string, proxyID, msg string) {
    	if e != nil {
    		e.PushContext().AddMetric(metric, key, proxyID, msg)
    	}
    }
    
    func (e *Environment) Version() string {
    	if x := e.GetLedger(); x != nil {
    		return x.RootHash()
    	}
    	return ""
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  8. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    		mountRequestTime = oldPodMount.mountRequestTime
    	}
    
    	if !ok {
    		// The volume exists, but not with this pod.
    		// It will be added below as podToMount, now just report SELinux metric.
    		if pluginSupportsSELinuxContextMount {
    			existingVolume := dsw.volumesToMount[volumeName]
    			if seLinuxFileLabel != existingVolume.originalSELinuxLabel {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.31.md

    - Expose apiserver_watch_cache_resource_version metric to simplify debugging problems with watchcache. ([#125377](https://github.com/kubernetes/kubernetes/pull/125377), [@wojtek-t](https://github.com/wojtek-t)) [SIG API Machinery and Instrumentation]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller.go

    type FilterOutFunc[T controllers.Object] func(old, cur T) bool
    
    // registerHandlers registers a handler for a given informer
    // Note: `otype` is used for metric, if empty, no metric will be reported
    func registerHandlers[T controllers.ComparableObject](c *Controller,
    	informer kclient.Informer[T], otype string,
    	handler func(T, T, model.Event) error, filter FilterOutFunc[T],
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top