Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 297 for Thresholds (0.33 sec)

  1. pkg/kubelet/eviction/helpers.go

    	var err error = nil
    	for idx, threshold := range thresholds {
    		if threshold.Signal == evictionapi.SignalImageFsAvailable && isHardEvictionThreshold(threshold) {
    			hardImageFsDisk = threshold
    		}
    		if threshold.Signal == evictionapi.SignalImageFsAvailable && !isHardEvictionThreshold(threshold) {
    			softImageFsDisk = threshold
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager.go

    	debugLogObservations("observations", observations)
    
    	// determine the set of thresholds met independent of grace period
    	thresholds = thresholdsMet(thresholds, observations, false)
    	debugLogThresholdsWithObservation("thresholds - ignoring grace period", thresholds, observations)
    
    	// determine the set of thresholds previously met that have not yet satisfied the associated min-reclaim
    	if len(m.thresholdsMet) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/helpers.go

    func hardEvictionReservation(thresholds []evictionapi.Threshold, capacity v1.ResourceList) v1.ResourceList {
    	if len(thresholds) == 0 {
    		return nil
    	}
    	ret := v1.ResourceList{}
    	for _, threshold := range thresholds {
    		if threshold.Operator != evictionapi.OpLessThan {
    			continue
    		}
    		switch threshold.Signal {
    		case evictionapi.SignalMemoryAvailable:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/helpers_test.go

    	for _, tc := range []struct {
    		name       string
    		thresholds []evictionapi.Threshold
    		expected   []evictionapi.Threshold
    	}{
    		{
    			name:       "empty threshold list",
    			thresholds: []evictionapi.Threshold{},
    			expected:   []evictionapi.Threshold{},
    		},
    		{
    			name: "memory first",
    			thresholds: []evictionapi.Threshold{
    				{
    					Signal: evictionapi.SignalNodeFsAvailable,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/minio-dashboard.json

            "uid": "${DS_PROMETHEUS}"
          },
          "description": "",
          "fieldConfig": {
            "defaults": {
              "color": {
                "mode": "thresholds"
              },
              "mappings": [],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  6. src/math/big/calibrate_test.go

    		if i == from {
    			initPos = pos
    		}
    		if threshold == 0 && pos != initPos {
    			threshold = i
    			fmt.Printf("  threshold  found")
    		}
    		fmt.Println()
    
    	}
    	if threshold != 0 {
    		fmt.Printf("Found threshold = %d between %d - %d\n", threshold, from, to)
    	} else {
    		fmt.Printf("Found NO threshold between %d - %d\n", from, to)
    	}
    	return threshold
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/none_ecds.json

                "Ads": {}
              }
            },
            "service_name": "outbound|2000||s1tcp.none"
          },
          "connect_timeout": 1000000000,
          "circuit_breakers": {
            "thresholds": [
              {
                "max_retries": {
                  "value": 1024
                }
              }
            ]
          },
          "LbConfig": null
        },
        "outbound|2001||s1http.none": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/testdata/none_cds.json

                          }
                        }
                      }
                    }
                  }
                ]
              }
            ]
          },
          "circuit_breakers": {
            "thresholds": [
              {}
            ]
          },
          "LbConfig": null
        },
        "inbound|7071|httplocal|s1http.none": {
          "name": "inbound|7071|httplocal|s1http.none",
          "connect_timeout": 1000000000,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/node/minio-node.json

                    "match": "null",
                    "result": {
                      "text": "N/A"
                    }
                  },
                  "type": "special"
                }
              ],
              "thresholds": {
                "mode": "absolute",
                "steps": [
                  {
                    "color": "green",
                    "value": null
                  },
                  {
                    "color": "red",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/types.go

    	MaxPodGracePeriodSeconds int64
    	// Thresholds define the set of conditions monitored to trigger eviction.
    	Thresholds []evictionapi.Threshold
    	// KernelMemcgNotification if true will integrate with the kernel memcg notification to determine if memory thresholds are crossed.
    	KernelMemcgNotification bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top