Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Constraint (0.25 sec)

  1. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, err)
    		}
    		allErrs = append(allErrs, validateMinDomains(subFldPath.Child("minDomains"), constraint.MinDomains, constraint.WhenUnsatisfiable)...)
    		if err := validateNodeInclusionPolicy(subFldPath.Child("nodeAffinityPolicy"), constraint.NodeAffinityPolicy); err != nil {
    			allErrs = append(allErrs, err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
              {
                "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
                "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <code>comparable</code> may only be used as type constraints. They cannot be the types of
    values or variables, or components of other, non-interface types.
    </p>
    
    <h4 id="Satisfying_a_type_constraint">Satisfying a type constraint</h4>
    
    <p>
    A type argument <code>T</code><i> satisfies</i> a type constraint <code>C</code>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
              {
                "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
                "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

            "description": "VolumeNodeAffinity defines constraints that limit what nodes this volume can be accessed from.",
            "properties": {
              "required": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.NodeSelector"
                  }
                ],
                "description": "required specifies hard node constraints that must be met."
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg go/build/constraint, type AndExpr struct, Y Expr
    pkg go/build/constraint, type Expr interface, Eval(func(string) bool) bool
    pkg go/build/constraint, type Expr interface, String() string
    pkg go/build/constraint, type Expr interface, unexported methods
    pkg go/build/constraint, type NotExpr struct
    pkg go/build/constraint, type NotExpr struct, X Expr
    pkg go/build/constraint, type OrExpr struct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "schema": {
                  "type": "string",
                  "uniqueItems": true
                }
              },
              {
                "description": "resourceVersion sets a constraint on what resource versions a request may be served from. See https://kubernetes.io/docs/reference/using-api/api-concepts/#resource-versions for details.\n\nDefaults to unset",
                "in": "query",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy the spread constraint. - DoNotSchedule (default) tells the scheduler not to schedule it. - ScheduleAnyway tells the scheduler to schedule the pod in any location,\n  but giving higher precedence to topologies that would help reduce the\n  skew.\nA constraint is considered \"Unsatisfiable\" for an incoming pod if and only if every possible node assignment for that pod would violate \"MaxSkew\"...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto result_ty = mlir::dyn_cast<RankedTensorType>(op.getType());
        if (!input_ty || !filter_ty || !result_ty) return failure();
        // TODO(disc): Remove this constraint once fold and canonicalization
        // implemented.
        if (input_ty.hasStaticShape() && filter_ty.hasStaticShape())
          return failure();
    
        ArrayRef<Attribute> dilations = op.getDilations().getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    // unsatisfiable constraint.
    type UnsatisfiableConstraintAction string
    
    const (
    	// DoNotSchedule instructs the scheduler not to schedule the pod
    	// when constraints are not satisfied.
    	DoNotSchedule UnsatisfiableConstraintAction = "DoNotSchedule"
    	// ScheduleAnyway instructs the scheduler to schedule the pod
    	// even if constraints are not satisfied.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top