Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 233 for statsd (0.12 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op_test.cc

    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/internal/trace/testdata/cmd/gotraceeventstats/main.go

    	fmt.Fprintf(w, "-\t-\t-\t-\t-\n")
    	for i := range stats {
    		stat := &stats[i]
    		name := ""
    		if int(stat.typ) >= len(specs) {
    			name = fmt.Sprintf("<unknown (%d)>", stat.typ)
    		} else {
    			name = specs[stat.typ].Name
    		}
    		bytesPct := float64(stat.bytes) / float64(cr.bytesRead) * 100
    		countPct := float64(stat.count) / float64(eventsRead) * 100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

        private final DaemonHealthStats stats;
        private final GarbageCollectorMonitoringStrategy strategy;
        private final Logger logger;
    
        public HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy) {
            this(stats, strategy, LoggerFactory.getLogger(HealthExpirationStrategy.class));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
  4. pkg/kubelet/metrics/collectors/volume_stats.go

    */
    
    package collectors
    
    import (
    	"context"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/component-base/metrics"
    	stats "k8s.io/kubelet/pkg/apis/stats/v1alpha1"
    	kubeletmetrics "k8s.io/kubernetes/pkg/kubelet/metrics"
    	serverstats "k8s.io/kubernetes/pkg/kubelet/server/stats"
    )
    
    var (
    	volumeStatsCapacityBytesDesc = metrics.NewDesc(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/stream_executor/stream_executor.cc

        }
        absl::Status status = ValidateSPAllocatorStats(c_stats);
        if (!status.ok()) {
          LOG(ERROR) << status.message();
          return absl::nullopt;
        }
        ::stream_executor::AllocatorStats stats;
        stats.num_allocs = c_stats.num_allocs;
        stats.bytes_in_use = c_stats.bytes_in_use;
        stats.peak_bytes_in_use = c_stats.peak_bytes_in_use;
        stats.largest_alloc_size = c_stats.largest_alloc_size;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. docs/ko/docs/tutorial/response-status-code.md

    <img src="https://fastapi.tiangolo.com/img/tutorial/response-status-code/image02.png">
    
    !!! note "기술적 세부사항"
        `from starlette import status` 역시 사용할 수 있습니다.
    
        **FastAPI**는 개발자인 여러분의 편의를 위해 `fastapi.status` 와 동일한 `starlette.status` 도 제공합니다. 하지만 이것은 Starlette로부터 직접 제공됩니다.
    
    ## 기본값 변경
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:06:53 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/fuzz/FuzzReader/invalid-proc-state

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 221 bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry_test.go

    			networking.ListenerProtocolHTTP,
    			nil,
    			map[string]string{
    				"istio.stats": cfg,
    			},
    		},
    		{
    			"default prometheus",
    			[]config.Config{newTelemetry("istio-system", emptyPrometheus)},
    			sidecar,
    			networking.ListenerClassSidecarOutbound,
    			networking.ListenerProtocolHTTP,
    			nil,
    			map[string]string{
    				"istio.stats": "{}",
    			},
    		},
    		{
    			"default provider prometheus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. cmd/metrics-v3-logger-webhook.go

    	for _, t := range tgts {
    		labels := []string{nameL, t.String(), endpointL, t.Endpoint()}
    		m.Set(webhookFailedMessages, float64(t.Stats().FailedMessages), labels...)
    		m.Set(webhookQueueLength, float64(t.Stats().QueueLength), labels...)
    		m.Set(webhookTotalMessages, float64(t.Stats().TotalMessages), labels...)
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:27:33 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. src/internal/trace/summary_test.go

    	}
    }
    
    func basicGoroutineExecStatsChecks(t *testing.T, stats *trace.GoroutineExecStats) {
    	if stats.ExecTime < 0 {
    		t.Error("found negative ExecTime")
    	}
    	if stats.SchedWaitTime < 0 {
    		t.Error("found negative SchedWaitTime")
    	}
    	if stats.SyscallTime < 0 {
    		t.Error("found negative SyscallTime")
    	}
    	if stats.SyscallBlockTime < 0 {
    		t.Error("found negative SyscallBlockTime")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top