Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 124 for wmin (0.07 sec)

  1. src/net/http/routing_index.go

    	var lmin, wmin []*pattern
    	min := math.MaxInt
    	hasLit := false
    	for i, seg := range pat.segments {
    		if seg.multi {
    			break
    		}
    		if !seg.wild {
    			hasLit = true
    			lpats := idx.segments[routingIndexKey{s: seg.s, pos: i}]
    			wpats := idx.segments[routingIndexKey{s: "", pos: i}]
    			if sum := len(lpats) + len(wpats); sum < min {
    				lmin = lpats
    				wmin = wpats
    				min = sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:22 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. pkg/proxy/metrics/metrics.go

    				metrics.LinearBuckets(1, 1, 59),      // 1s, 2s, 3s, ... 59s
    				metrics.LinearBuckets(60, 5, 12),     // 60s, 65s, 70s, ... 115s
    				metrics.LinearBuckets(120, 30, 7),    // 2min, 2.5min, 3min, ..., 5min
    			),
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    	// EndpointChangesPending is the number of pending endpoint changes that
    	// have not yet been synced to the proxy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/list.md

    | `minio_node_cpu_avg_load5`           | CPU load average 5min.                     |
    | `minio_node_cpu_avg_load5_avg`       | CPU load average 5min (avg).               |
    | `minio_node_cpu_avg_load5_max`       | CPU load average 5min (max).               |
    | `minio_node_cpu_avg_load5_perc`      | CPU load average 5min (percentage).        |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  4. cmd/metrics-resource.go

    		cpuSteal:          "CPU steal time",
    		cpuNice:           "CPU nice time",
    		cpuLoad1:          "CPU load average 1min",
    		cpuLoad5:          "CPU load average 5min",
    		cpuLoad15:         "CPU load average 15min",
    		cpuLoad1Perc:      "CPU load average 1min (perentage)",
    		cpuLoad5Perc:      "CPU load average 5min (percentage)",
    		cpuLoad15Perc:     "CPU load average 15min (percentage)",
    	}
    	resourceMetricsGroups = []*MetricsGroupV2{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 15:15:13 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/runtime/minmax.go

    	if y > x {
    		return y
    	}
    	return x
    }
    
    func fmin32(x, y float32) float32 { return fmin(x, y) }
    func fmin64(x, y float64) float64 { return fmin(x, y) }
    func fmax32(x, y float32) float32 { return fmax(x, y) }
    func fmax64(x, y float64) float64 { return fmax(x, y) }
    
    type floaty interface{ ~float32 | ~float64 }
    
    func fmin[F floaty](x, y F) F {
    	if y != y || y < x {
    		return y
    	}
    	if x != x || x < y || x != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 18:15:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprogcgo/windows/win.go

    Than McIntosh <******@****.***> 1644269521 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 15:59:22 UTC 2022
    - 169 bytes
    - Viewed (0)
  7. test/typeparam/min.go

    	~int | ~int64 | ~float64 | ~string
    }
    
    func min[T Ordered](x, y T) T {
    	if x < y {
    		return x
    	}
    	return y
    }
    
    func main() {
    	const want = 2
    	if got := min[int](2, 3); got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    
    	if got := min(2, 3); got != want {
    		panic(fmt.Sprintf("want %d, got %d", want, got))
    	}
    
    	if got := min[float64](3.5, 2.0); got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 979 bytes
    - Viewed (0)
  8. cmd/metrics-v3-system-cpu.go

    	sysCPUAvgIOWaitMD = NewGaugeMD(sysCPUAvgIOWait, "Average CPU IOWait time")
    	sysCPULoadMD      = NewGaugeMD(sysCPULoad, "CPU load average 1min")
    	sysCPULoadPercMD  = NewGaugeMD(sysCPULoadPerc, "CPU load average 1min (percentage)")
    	sysCPUNiceMD      = NewGaugeMD(sysCPUNice, "CPU nice time")
    	sysCPUStealMD     = NewGaugeMD(sysCPUSteal, "CPU steal time")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 23 23:56:12 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. test/typeparam/slices.go

    	if got, want := _SliceMin(s1), -5; got != want {
    		panic(fmt.Sprintf("_Min(%v) = %d, want %d", s1, got, want))
    	}
    
    	s2 := []string{"aaa", "a", "aa", "aaaa"}
    	if got, want := _SliceMin(s2), "a"; got != want {
    		panic(fmt.Sprintf("_Min(%v) = %q, want %q", s2, got, want))
    	}
    
    	if got, want := _SliceMin(s2[:0]), ""; got != want {
    		panic(fmt.Sprintf("_Min(%v) = %q, want %q", s2[:0], got, want))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  10. src/internal/bytealg/compare_s390x.s

    //   R3 = a
    //   R4 = alen
    //   R5 = b
    //   R6 = blen
    //   R7 = address of output word (stores -1/0/1 here)
    TEXT cmpbody<>(SB),NOSPLIT|NOFRAME,$0-0
    	CMPBEQ	R3, R5, cmplengths
    	MOVD	R4, R8
    	CMPBLE	R4, R6, amin
    	MOVD	R6, R8
    amin:
    	CMPBEQ	R8, $0, cmplengths
    	CMP	R8, $256
    	BLE	tail
    loop:
    	CLC	$256, 0(R3), 0(R5)
    	BGT	gt
    	BLT	lt
    	SUB	$256, R8
    	MOVD	$256(R3), R3
    	MOVD	$256(R5), R5
    	CMP	R8, $256
    	BGT	loop
    tail:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 1.2K bytes
    - Viewed (0)
Back to top