Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 233 for Constraint (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Parses the specified version constraint specification, for example "1.0" or "[1.0,2.0)".
         * <p>
         * Shortcut for {@code getService(VersionParser.class).parseVersionConstraint(...)}.
         *
         * @param versionConstraint the version string to parse
         * @return the version constraint parsed from the given string
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/TreeMultiset.java

       * {@code ClassCastException} for any elements {@code e1} and {@code e2} in the multiset. If the
       * user attempts to add an element to the multiset that violates this constraint (for example, the
       * user attempts to add a string element to a set whose elements are integers), the {@code
       * add(Object)} call will throw a {@code ClassCastException}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    //===----------------------------------------------------------------------===//
    
    namespace {
    
    // Verifies that every control operands are at the end of the list.
    // Used by the constraint `ControlOperandsAfterAllData` in ODS.
    LogicalResult VerifyControlOperandsAfterAllData(Operation *op) {
      bool found_control = false;
      for (int operand_idx : llvm::seq<int>(0, op->getNumOperands())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    the use of cgo, and to 0 to disable it. The go tool will set the
    build constraint "cgo" if cgo is enabled. The special import "C"
    implies the "cgo" build constraint, as though the file also said
    "//go:build cgo".  Therefore, if cgo is disabled, files that import
    "C" will not be built by the go tool. (For more about build constraints
    see https://golang.org/pkg/go/build/#hdr-Build_Constraints).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. src/internal/types/errors/codes.go

    	// not valid.
    	//
    	// Example:
    	//  type _ interface {
    	//   	~int | interface{ m() }
    	//  }
    	InvalidUnion
    
    	// MisplacedConstraintIface occurs when a constraint-type interface is used
    	// outside of constraint position.
    	//
    	// Example:
    	//   type I interface { ~int }
    	//
    	//   var _ I
    	MisplacedConstraintIface
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	policyMeta, err := meta.Accessor(policySpec)
    	if err != nil {
    		// This should not happen if P, and B have ObjectMeta, but
    		// unfortunately there is no way to express "able to call
    		// meta.Accessor" as a type constraint
    		utilruntime.HandleError(err)
    		var emptyEvaluator E
    		return emptyEvaluator
    	}
    	key := types.NamespacedName{
    		Namespace: policyMeta.GetNamespace(),
    		Name:      policyMeta.GetName(),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        if (expected_params == compared_params) continue;
        // If the quantization parameters are not the same, as long as it has the
        // same storage type and the op interface doesn't require same scale
        // constraint for this storage type, it is still ok.
        if (expected_params.isSigned() == compared_params.isSigned() &&
            expected_params.getStorageTypeIntegralWidth() ==
                compared_params.getStorageTypeIntegralWidth() &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/mvs.go

    		panic(fmt.Sprintf("mistake: chose versions %+v instead of targets %+v", vs, targets))
    	}
    	return list, nil
    }
    
    // Req returns the minimal requirement list for the target module,
    // with the constraint that all module paths listed in base must
    // appear in the returned list.
    func Req(mainModule module.Version, base []string, reqs Reqs) ([]module.Version, error) {
    	list, err := BuildList([]module.Version{mainModule}, reqs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/size.go

    			if f.Type.NotInHeap() {
    				t.SetNotInHeap(true)
    			}
    		}
    
    		offset += f.Type.width
    
    		maxwidth := MaxWidth
    		// On 32-bit systems, reflect tables impose an additional constraint
    		// that each field start offset must fit in 31 bits.
    		if maxwidth < 1<<32 {
    			maxwidth = 1<<31 - 1
    		}
    		if offset >= maxwidth {
    			base.ErrorfAt(typePos(t), 0, "type %L too large", t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. pkg/api/pod/util.go

    func hasInvalidTopologySpreadConstraintLabelSelector(spec *api.PodSpec) bool {
    	for _, constraint := range spec.TopologySpreadConstraints {
    		errs := metavalidation.ValidateLabelSelector(constraint.LabelSelector, metavalidation.LabelSelectorValidationOptions{AllowInvalidLabelValueInSelector: false}, nil)
    		if len(errs) != 0 {
    			return true
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
Back to top