Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 233 for statsd (0.37 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // with the actual state of the world by triggering attach, detach, mount, and
    // unmount operations.
    // Note: This is distinct from the Reconciler implemented by the attach/detach
    // controller. This reconciles state for the kubelet volume manager. That
    // reconciles state for the attach/detach controller.
    type Reconciler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    )
    
    func init() {
    	utilruntime.Must(metricsfeatures.AddFeatureGates(utilfeature.DefaultMutableFeatureGate))
    }
    
    const (
    	metricsPath         = "/metrics"
    	cadvisorMetricsPath = "/metrics/cadvisor"
    	resourceMetricsPath = "/metrics/resource"
    	proberMetricsPath   = "/metrics/probes"
    	statsPath           = "/stats/"
    	logsPath            = "/logs/"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_gc_manager_test.go

    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	statsapi "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/container"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	stats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    	statstest "k8s.io/kubernetes/pkg/kubelet/server/stats/testing"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    var zero time.Time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          for any such Derivative Works as a whole, provided Your use,
          reproduction, and distribution of the Work otherwise complies with
          the conditions stated in this License.
    
       5. Submission of Contributions. Unless You explicitly state otherwise,
          any Contribution intentionally submitted for inclusion in the Work
          by You to the Licensor shall be under the terms and conditions of
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/templates/daemonset.yaml

    {{- else }}
            image: "{{ .Values.hub }}/{{ .Values.image | default "ztunnel" }}:{{ .Values.tag }}{{with (.Values.variant )}}-{{.}}{{end}}"
    {{- end }}
            ports:
            - containerPort: 15020
              name: ztunnel-stats
              protocol: TCP
            resources:
    {{- if .Values.resources }}
    {{ toYaml .Values.resources | trim | indent 10 }}
    {{- end }}
    {{- with .Values.imagePullPolicy }}
            imagePullPolicy: {{ . }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. internal/logger/target/kafka/kafka.go

    func (h *Target) Endpoint() string {
    	return "kafka"
    }
    
    // String - kafka string
    func (h *Target) String() string {
    	return "kafka"
    }
    
    // Stats returns the target statistics.
    func (h *Target) Stats() types.TargetStats {
    	h.logChMu.RLock()
    	queueLength := len(h.logCh)
    	h.logChMu.RUnlock()
    
    	return types.TargetStats{
    		TotalMessages:  atomic.LoadInt64(&h.totalMessages),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	memstats.pause_total_ns += uint64(work.pauseNS)
    
    	// Accumulate CPU stats.
    	//
    	// Use maxprocs instead of stwprocs for GC pause time because the total time
    	// computed in the CPU stats is based on maxprocs, and we want them to be
    	// comparable.
    	//
    	// Pass gcMarkPhase=true to accumulate so we can get all the latest GC CPU stats
    	// in there too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                 op.large_custom_options_size);
        } else {
          custom_options = op.custom_options;
        }
    
        status = mlir::CustomOptionsToAttributes(
            op_code.custom_code, custom_options, builder, loc, &attrs);
        if (!status.ok()) {
          return emitError(loc, status.ToString()), status;
        }
      } else {
        mlir::BuiltinOptionsToAttributes(op.builtin_options, builder, attrs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/proxy-override-runas.yaml.cni.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"containers":[{"name":"istio-proxy","resources":{},"securityContext":{"runAsUser":1234,"runAsGroup":4321}}]}'
            sidecar.istio.io/interceptionMode: REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessor.java

            this.processor = processor;
            this.outputRedirector = outputRedirector;
        }
    
        @Override
        public void started(final TestDescriptorInternal test, TestStartEvent event) {
            processor.started(test, event);
    
            outputRedirector.setOutputOwner(test.getId());
    
            if (rootId == null) {
                outputRedirector.startRedirecting();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top