Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for traits (0.13 sec)

  1. pkg/apis/core/types.go

    	// +optional
    	NodeAffinityPolicy *NodeInclusionPolicy
    	// NodeTaintsPolicy indicates how we will treat node taints when calculating
    	// pod topology spread skew. Options are:
    	// - Honor: nodes without taints, along with tainted nodes for which the incoming pod
    	// has a toleration, are included.
    	// - Ignore: node taints are ignored. All nodes are included.
    	//
    	// If this value is nil, the behavior is equivalent to the Ignore policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/Dialect/Tensor/IR/Tensor.h"  // from @llvm-project
    #include "mlir/Dialect/Traits.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    		return allErrs
    	}
    
    	if len(taints) > 0 {
    		allErrs = append(allErrs, validateNodeTaints(taints, fldPath.Child(core.TaintsAnnotationKey))...)
    	}
    
    	return allErrs
    }
    
    // validateNodeTaints tests if given taints have valid data.
    func validateNodeTaints(taints []core.Taint, fldPath *field.Path) field.ErrorList {
    	allErrors := field.ErrorList{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"nodeTaintsPolicy":   "NodeTaintsPolicy indicates how we will treat node taints when calculating pod topology spread skew. Options are: - Honor: nodes without taints, along with tainted nodes for which the incoming pod has a toleration, are included. - Ignore: node taints are ignored. All nodes are included.\n\nIf this value is nil, the behavior is equivalent to the Ignore policy. This is a beta-level feature default enabled...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Unschedulable bool `json:"unschedulable,omitempty" protobuf:"varint,4,opt,name=unschedulable"`
    	// If specified, the node's taints.
    	// +optional
    	// +listType=atomic
    	Taints []Taint `json:"taints,omitempty" protobuf:"bytes,5,opt,name=taints"`
    
    	// Deprecated: Previously used to specify the source of the node's configuration for the DynamicKubeletConfig feature. This feature is removed.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      optional string nodeAffinityPolicy = 6;
    
      // NodeTaintsPolicy indicates how we will treat node taints when calculating
      // pod topology spread skew. Options are:
      // - Honor: nodes without taints, along with tainted nodes for which the incoming pod
      // has a toleration, are included.
      // - Ignore: node taints are ignored. All nodes are included.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    	out.PodCIDRs = *(*[]string)(unsafe.Pointer(&in.PodCIDRs))
    	out.ProviderID = in.ProviderID
    	out.Unschedulable = in.Unschedulable
    	out.Taints = *(*[]core.Taint)(unsafe.Pointer(&in.Taints))
    	out.ConfigSource = (*core.NodeConfigSource)(unsafe.Pointer(in.ConfigSource))
    	out.DoNotUseExternalID = in.DoNotUseExternalID
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

    - E2e framework: the `node-role.kubernetes.io/master` taint has been removed from the default value of `--non-blocking-taints` flag. You may need to set `--non-blocking-taints` explicitly if the cluster to be tested has nodes with the deprecated `node-role.kubernetes.io/master` taint. ([#118510](https://github.com/kubernetes/kubernetes/pull/118510), [@SataQiu](https://github.com/SataQiu)) [SIG Testing]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// scheduled to nodes with matching taints. Each component can overwrite
    	// these default values by adding its tolerations block in the relevant section below
    	// and setting the desired values.
    	// Configure this field in case that all pods of Istio control plane are expected to
    	// be scheduled to particular nodes with specified taints.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top