Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for tolerated (0.21 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			expectedList: []framework.NodeScore{
    				{Name: "nodeA", Score: framework.MaxNodeScore},
    				{Name: "nodeB", Score: 0},
    			},
    		},
    		// the count of taints that are tolerated by pod, does not matter.
    		{
    			name: "the nodes that all of their taints are tolerated by the pod, get the same score, no matter how many tolerable taints a node has",
    			pod: podWithTolerations("pod1", []v1.Toleration{
    				{
    					Key:      "cpu-type",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-erasure-set.go

    		poolIDL, setIDL)
    	erasureSetReadToleranceMD = NewGaugeMD(erasureSetReadTolerance,
    		"No of drive failures that can be tolerated without disrupting read operations",
    		poolIDL, setIDL)
    	erasureSetWriteToleranceMD = NewGaugeMD(erasureSetWriteTolerance,
    		"No of drive failures that can be tolerated without disrupting write operations",
    		poolIDL, setIDL)
    	erasureSetReadHealthMD = NewGaugeMD(erasureSetReadHealth,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 14 07:25:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/helper/helpers.go

    func GetMatchingTolerations(taints []v1.Taint, tolerations []v1.Toleration) (bool, []v1.Toleration) {
    	if len(taints) == 0 {
    		return true, []v1.Toleration{}
    	}
    	if len(tolerations) == 0 && len(taints) > 0 {
    		return false, []v1.Toleration{}
    	}
    	result := []v1.Toleration{}
    	for i := range taints {
    		tolerated := false
    		for j := range tolerations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/node/v1/types.go

    	// tolerations are appended (excluding duplicates) to pods running with this
    	// RuntimeClass during admission, effectively unioning the set of nodes
    	// tolerated by the pod and the RuntimeClass.
    	// +optional
    	// +listType=atomic
    	Tolerations []corev1.Toleration `json:"tolerations,omitempty" protobuf:"bytes,2,rep,name=tolerations"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. docs/metrics/v3.md

    | `minio_cluster_erasure_set_read_tolerance`       | `gauge` | No of drive failures that can be tolerated without disrupting read operations     | `pool_id,set_id` |
    | `minio_cluster_erasure_set_write_tolerance`      | `gauge` | No of drive failures that can be tolerated without disrupting write operations    | `pool_id,set_id` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration.go

    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/helper"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	"k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    // TaintToleration is a plugin that checks if a pod tolerates a node's taints.
    type TaintToleration struct {
    	handle                    framework.Handle
    	enableSchedulingQueueHint bool
    }
    
    var _ framework.FilterPlugin = &TaintToleration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. doc/next/3-tools.md

    The `go` command uses it automatically, avoiding "argument list too long"
    errors with a very large `CGO_LDFLAGS`.
    
    ### Trace {#trace}
    
    <!-- go.dev/issue/65316 -->
    The `trace` tool now better tolerates partially broken traces by attempting to
    recover what trace data it can. This functionality is particularly helpful when
    viewing a trace that was collected during a program crash, since the trace data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    // UnmarshalQueryParameter converts from a URL query parameter value to an object
    func (t *MicroTime) UnmarshalQueryParameter(str string) error {
    	if len(str) == 0 {
    		t.Time = time.Time{}
    		return nil
    	}
    	// Tolerate requests from older clients that used JSON serialization to build query params
    	if len(str) == 4 && str == "null" {
    		t.Time = time.Time{}
    		return nil
    	}
    
    	pt, err := time.Parse(RFC3339Micro, str)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    }
    
    // UnmarshalQueryParameter converts from a URL query parameter value to an object
    func (t *Time) UnmarshalQueryParameter(str string) error {
    	if len(str) == 0 {
    		t.Time = time.Time{}
    		return nil
    	}
    	// Tolerate requests from older clients that used JSON serialization to build query params
    	if len(str) == 4 && str == "null" {
    		t.Time = time.Time{}
    		return nil
    	}
    
    	pt, err := time.Parse(time.RFC3339, str)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation.go

    		allErrs = append(allErrs, ValidateQualifiedName(*sp.AppProtocol, fldPath.Child("appProtocol"))...)
    	}
    
    	// in the v1 API, targetPorts on headless services were tolerated.
    	// once we have version-specific validation, we can reject this on newer API versions, but until then, we have to tolerate it for compatibility.
    	//
    	// if isHeadlessService {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top