Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for Thresholds (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/eviction/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package eviction is responsible for enforcing eviction thresholds to maintain
    // node stability.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 739 bytes
    - Viewed (0)
  7. test/fixedbugs/issue30606b.go

    import "reflect"
    
    func main() {}
    
    func typ(x interface{}) reflect.Type { return reflect.ValueOf(x).Type() }
    
    var byteType = typ((byte)(0))
    var ptrType = typ((*byte)(nil))
    
    // Arrays of pointers. There are two size thresholds.
    // Bit masks are chunked in groups of 120 pointers.
    // Array types with >16384 pointers have a GC program instead of a bitmask.
    var smallPtrType = reflect.ArrayOf(100, ptrType)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:06:12 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/memory_threshold_notifier.go

    )
    
    type memoryThresholdNotifier struct {
    	threshold  evictionapi.Threshold
    	cgroupPath string
    	events     chan struct{}
    	factory    NotifierFactory
    	handler    func(string)
    	notifier   CgroupNotifier
    }
    
    var _ ThresholdNotifier = &memoryThresholdNotifier{}
    
    // NewMemoryThresholdNotifier creates a ThresholdNotifier which is designed to respond to the given threshold.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 21 00:36:14 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  9. pkg/istio-agent/health/health_check.go

    			numSuccess++
    			// wipe numFail (need consecutive success)
    			numFail = 0
    			// if we reached the threshold, mark the target as healthy
    			if numSuccess == w.config.SuccessThresh && lastState != lastStateHealthy {
    				healthCheckLog.Info("success threshold hit, marking as healthy")
    				callback(&ProbeEvent{Healthy: true})
    				numSuccess = 0
    				lastState = lastStateHealthy
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 03:06:44 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. tests/binary/binaries_test.go

    		if got < tt.minMb {
    			t.Fatalf("Binary size of %dmb was smaller than min allowed size %dmb. This is very likely a good thing, "+
    				"indicating the binary size has decreased. The test will fail to ensure you update the test thresholds to ensure "+
    				"the improvements are 'locked in'.", got, tt.minMb)
    		}
    	})
    }
    
    // If this flag is present, it means "testing" was imported by code that is built by the binary
    var denylistedFlags = []string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top