Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for nchstats (0.28 sec)

  1. cmd/metrics-resource.go

    	m := collectLocalMetrics(types, collectMetricsOpts{})
    	for _, hm := range m.ByHost {
    		if hm.Net != nil && len(hm.Net.NetStats.Name) > 0 {
    			stats := hm.Net.NetStats
    			labels := map[string]string{"interface": stats.Name}
    			updateResourceMetrics(interfaceSubsystem, interfaceRxBytes, float64(stats.RxBytes), labels, true)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. src/runtime/debug/garbage_test.go

    package debug_test
    
    import (
    	"internal/testenv"
    	"os"
    	"runtime"
    	. "runtime/debug"
    	"testing"
    	"time"
    )
    
    func TestReadGCStats(t *testing.T) {
    	defer SetGCPercent(SetGCPercent(-1))
    
    	var stats GCStats
    	var mstats runtime.MemStats
    	var min, max time.Duration
    
    	// First ReadGCStats will allocate, second should not,
    	// especially if we follow up with an explicit garbage collection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var tcpinfo TCPInfo
    	tcpinfo.State = uint8(conn.state)
    	tcpinfo.Ca_state = 0 // dummy
    	tcpinfo.Retransmits = uint8(tcpStats.retransSegs)
    	tcpinfo.Probes = uint8(tcpStats.outWinProbes)
    	tcpinfo.Backoff = 0 // dummy
    	tcpinfo.Options = 0 // dummy
    	tcpinfo.Rto = tcpStats.retransTimeouts
    	tcpinfo.Ato = tcpStats.outDelayAcks
    	tcpinfo.Snd_mss = conn.sendMSS
    	tcpinfo.Rcv_mss = conn.sendMSS // dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. api/go1.4.txt

    pkg reflect, type Type interface, Comparable() bool
    
    # CL 153670043 runtime: add PauseEnd array to MemStats and GCStats, Jens Frederich <******@****.***>
    pkg runtime, type MemStats struct, PauseEnd [256]uint64
    pkg runtime/debug, type GCStats struct, PauseEnd []time.Time
    
    # CL 136710045 sync/atomic: add Value, Dmitriy Vyukov <******@****.***>
    pkg sync/atomic, method (*Value) Load() interface{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    					Type:      counterMetric,
    				},
    				Value: float64(nstats.TotalEvents),
    			})
    			for id, st := range nstats.TargetStats {
    				metrics = append(metrics, MetricV2{
    					Description: MetricDescription{
    						Namespace: minioNamespace,
    						Subsystem: notifySubsystem,
    						Name:      "target_total_events",
    						Help:      "Total number of events sent (or) queued to the target",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    						HeapAlloc:  server.MemStats.HeapAlloc,
    					},
    					GoMaxProcs:     server.GoMaxProcs,
    					NumCPU:         server.NumCPU,
    					RuntimeVersion: server.RuntimeVersion,
    					GCStats:        server.GCStats,
    					MinioEnvVars:   server.MinioEnvVars,
    				})
    			}
    
    			tls := getTLSInfo()
    			isK8s := IsKubernetes()
    			isDocker := IsDocker()
    			healthInfo.Minio.Info = madmin.MinioInfo{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	defer cancel()
    	saveResyncStatus(ctx, opts.bucket, m, objAPI)
    }
    
    // update replication resync stats for bucket's remote target
    func (s *replicationResyncer) incStats(ts TargetReplicationResyncStatus, opts resyncOpts) {
    	s.Lock()
    	defer s.Unlock()
    	m := s.statusMap[opts.bucket]
    	st := m.TargetsMap[opts.arn]
    	st.Object = ts.Object
    	st.ReplicatedCount += ts.ReplicatedCount
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"BuildSetting.Key", Field, 18},
    		{"BuildSetting.Value", Field, 18},
    		{"FreeOSMemory", Func, 1},
    		{"GCStats", Type, 1},
    		{"GCStats.LastGC", Field, 1},
    		{"GCStats.NumGC", Field, 1},
    		{"GCStats.Pause", Field, 1},
    		{"GCStats.PauseEnd", Field, 4},
    		{"GCStats.PauseQuantiles", Field, 1},
    		{"GCStats.PauseTotal", Field, 1},
    		{"Module", Type, 12},
    		{"Module.Path", Field, 12},
    		{"Module.Replace", Field, 12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Cmd          uint32
    	Driver       [32]byte
    	Version      [32]byte
    	Fw_version   [32]byte
    	Bus_info     [32]byte
    	Erom_version [32]byte
    	Reserved2    [12]byte
    	N_priv_flags uint32
    	N_stats      uint32
    	Testinfo_len uint32
    	Eedump_len   uint32
    	Regdump_len  uint32
    }
    
    type (
    	HIDRawReportDescriptor struct {
    		Size  uint32
    		Value [4096]uint8
    	}
    	HIDRawDevInfo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg runtime/debug, func FreeOSMemory()
    pkg runtime/debug, func ReadGCStats(*GCStats)
    pkg runtime/debug, func SetGCPercent(int) int
    pkg runtime/debug, type GCStats struct
    pkg runtime/debug, type GCStats struct, LastGC time.Time
    pkg runtime/debug, type GCStats struct, NumGC int64
    pkg runtime/debug, type GCStats struct, Pause []time.Duration
    pkg runtime/debug, type GCStats struct, PauseQuantiles []time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top