Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 127 for Constraint (0.21 sec)

  1. src/cmd/go/internal/modindex/read.go

    			x, err := constraint.Parse(goBuildConstraint)
    			if err != nil {
    				return p, fmt.Errorf("%s: parsing //go:build line: %v", name, err)
    			}
    			shouldBuild = ctxt.eval(x, allTags)
    		} else if plusBuildConstraints := tf.plusBuildConstraints(); len(plusBuildConstraints) > 0 {
    			for _, text := range plusBuildConstraints {
    				if x, err := constraint.Parse(text); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    // a signature, and the hash value of t must depend only on t's index and
    // constraint: signatures are considered identical modulo type parameter
    // renaming. To avoid infinite recursion, we only hash the type parameter
    // index, and rely on types.Identical to handle signatures where constraints
    // are not identical.
    //
    // Otherwise the hash of t depends only on t's pointer identity.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

                }
    
                @Override
                public VersionConstraint parseVersionConstraint(String constraint) {
                    throw new IllegalArgumentException("constraint not supported by this parser");
                }
    
                @Override
                public boolean isSnapshot(String version) {
                    requireNonNull(version, "version");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleResolveState.java

            try {
                DependencyMetadata dependencyMetadata = selectorState.getDependencyMetadata();
                boolean constraint = dependencyMetadata.isConstraint();
                if (constraint) {
                    ComponentSelector selector = dependencyMetadata.getSelector();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	FMT, sort
    	< internal/gover
    	< go/version
    	< go/token
    	< go/scanner
    	< go/ast
    	< go/internal/typeparams;
    
    	FMT
    	< go/build/constraint;
    
    	FMT, sort
    	< go/doc/comment;
    
    	go/internal/typeparams, go/build/constraint
    	< go/parser;
    
    	go/doc/comment, go/parser, text/tabwriter
    	< go/printer
    	< go/format;
    
    	math/big, go/token
    	< go/constant;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    include "tensorflow/compiler/mlir/tensorflow/transforms/rewrite_util.td"
    
    def NonScalarRankedType : Type<And<[Neg<HasAnyRankOfPred<[0]>>, HasRankPred]>,
                             "Non scalar type">;
    
    def HasSingleElement: Constraint<CPred<"($0.size() == 1)">>;
    
    def EmptyList: NativeCodeCall<"llvm::SmallVector<mlir::Value>{}">;
    
    // Creates a tf.ReadVariable op that reads a resource `$2` that has the same
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      assert(new_inputs.size() == num_replicas);
    
      // As model parallelism is not yet supported, we assume that all ops are
      // placed in logical core 0.
      // TODO(b/148913020): Remove this constraint once model parallelism is
      // supported.
      assert(devices.find(tensorflow::GetDeviceAliasForLogicalCore(0))
                 ->getSecond()
                 .size() == num_replicas);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. src/go/types/unify.go

    		if debug {
    			assert(u.asBoundTypeParam(x) == nil)
    		}
    		// By definition, a valid type argument must be in the type set of
    		// the respective type constraint. Therefore, the type argument's
    		// underlying type must be in the set of underlying types of that
    		// constraint. If there is a single such underlying type, it's the
    		// constraint's core type. It must match the type argument's under-
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/model/NamedObjectInstantiator.java

                visitFields(type.getSuperclass(), collector);
            }
    
            // Disallow instance fields. This doesn't guarantee that the object is immutable, just makes it less likely
            // We might tighten this constraint to also disallow any _code_ on immutable types that reaches out to static state
            for (Field field : type.getDeclaredFields()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/compile.go

    	{name: "trim", fn: trim}, // remove empty blocks
    }
    
    // Double-check phase ordering constraints.
    // This code is intended to document the ordering requirements
    // between different phases. It does not override the passes
    // list above.
    type constraint struct {
    	a, b string // a must come before b
    }
    
    var passOrder = [...]constraint{
    	// "insert resched checks" uses mem, better to clean out stores first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top