Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Constraint (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/ssagen/ssa.go

    			s.Fatalf("CONVNOP sign mismatch %v (%s) -> %v (%s)\n", from, from.Kind(), to, to.Kind())
    			return nil
    		}
    
    		if base.Flag.Cfg.Instrumenting {
    			// These appear to be fine, but they fail the
    			// integer constraint below, so okay them here.
    			// Sample non-integer conversion: map[string]string -> *uint8
    			return v
    		}
    
    		if etypesign(from.Kind()) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Added `optionalOldSelf` to `x-kubernetes-validations` to support ratcheting CRD schema constraints. ([#121034](https://github.com/kubernetes/kubernetes/pull/121034), [@alexzielenski](https://github.com/alexzielenski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Graduated support for `minDomains` in pod topology spread constraints, to general availability.
      The `MinDomainsInPodTopologySpread` feature gate no longer has any effect, and the field is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.28.md

    - Revised the logic for DaemonSet rolling update to exclude nodes if scheduling constraints are not met.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    	f.wbuf = append(f.wbuf, data...)
    	f.wbuf = append(f.wbuf, pad...)
    	return nil
    }
    
    // A SettingsFrame conveys configuration parameters that affect how
    // endpoints communicate, such as preferences and constraints on peer
    // behavior.
    //
    // See https://httpwg.org/specs/rfc7540.html#SETTINGS
    type http2SettingsFrame struct {
    	http2FrameHeader
    	p []byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	PodAnnotations *structpb.Struct `protobuf:"bytes,11,opt,name=podAnnotations,proto3" json:"podAnnotations,omitempty"`
    	// Pod anti-affinity label selector.
    	//
    	// Specify the pod anti-affinity that allows you to constrain which nodes
    	// your pod is eligible to be scheduled based on labels on pods that are
    	// already running on the node rather than based on labels on nodes.
    	// There are currently two types of anti-affinity:
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Revised the logic for DaemonSet rolling update to exclude nodes if scheduling constraints are not met.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top