Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for tolerated (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top