Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Constraint (0.19 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    class FloatValueEquals<string val> : Constraint<CPred<
      "FloatValueEquals($0, " # val # ")">>;
    
    class IsBoolAttrEqual<string true_or_false> : Constraint<CPred<
      "$0.getValue() == "#true_or_false#"">>;
    
    // Flattens a constant tensor to 1D.
    def FlattenTo1D : NativeCodeCall<"FlattenTo1D($0)">;
    
    def HasOneUse : Constraint<CPred<"$0.hasOneUse()">>;
    
    def HasSameStaticShapes : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			st.advance(1)
    			ret = &BitIntType{Size: size, Signed: signed}
    
    		case 'k':
    			constraint, _ := st.name()
    			ret = &SuffixType{
    				Base:   constraint,
    				Suffix: "auto",
    			}
    
    		case 'K':
    			constraint, _ := st.name()
    			ret = &SuffixType{
    				Base:   constraint,
    				Suffix: "decltype(auto)",
    			}
    
    		default:
    			st.fail("unrecognized D code in type")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        def 'locking constraints are not transitive'() {
            given:
            def constraint = DefaultModuleComponentIdentifier.newId(DefaultModuleIdentifier.newId('org', 'foo'), '1.1')
            resolutionStrategy.isDependencyLockingEnabled() >> true
            dependencyLockingProvider.loadLockState("conf", _) >> new DefaultDependencyLockingState(true, [constraint] as Set, {entry -> false })
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
        if (!(((*root.getODSResults(2).begin()).use_empty()))) {
          return rewriter.notifyMatchFailure(
              fused_batch_norm_op, [&](::mlir::Diagnostic &diag) {
                diag << "entities '' failed to satisfy constraint: has no use";
              });
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    	// version unacceptable. (Path always has len ≥ 1.)
    	Path []module.Version
    
    	// If Err is nil, Constraint is a module version passed in the mustSelect
    	// argument that has the same module path as, and a lower version than,
    	// the last element of the Path slice.
    	Constraint module.Version
    
    	// If Constraint is unset, Err is an error encountered when loading the
    	// requirements of the last element in Path.
    	Err error
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            then:
            noExceptionThrown()
    
    
        }
    
        def 'optional dependency marked as no longer pending reverts to pending if hard edge disappears (remover has constraint: #dependsOptional, root has constraint: #constraintsOptional)'() {
            given:
            def optional = mavenRepo.module('org', 'optional', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. src/go/build/build.go

    			}
    			line = bytes.TrimSpace(line)
    			if !bytes.HasPrefix(line, slashSlash) || !bytes.Contains(line, plusBuild) {
    				continue
    			}
    			text := string(line)
    			if !constraint.IsPlusBuild(text) {
    				continue
    			}
    			if x, err := constraint.Parse(text); err == nil {
    				if !ctxt.eval(x, allTags) {
    					shouldBuild = false
    				}
    			}
    		}
    	}
    
    	return shouldBuild, sawBinaryOnly, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		if errors.Is(err, gover.ErrTooNew) {
    			toolchain.SwitchOrFatal(ctx, err)
    		}
    
    		var constraint *modload.ConstraintError
    		if !errors.As(err, &constraint) {
    			base.Fatal(err)
    		}
    
    		if cfg.BuildV {
    			// Log complete paths for the conflicts before we summarize them.
    			for _, c := range constraint.Conflicts {
    				fmt.Fprintf(os.Stderr, "go: %v\n", c.String())
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/parser.go

    				return
    			}
    
    			// go: directive (but be conservative and test)
    			if strings.HasPrefix(text, "go:") {
    				if p.top && strings.HasPrefix(msg, "//go:build") {
    					if x, err := constraint.Parse(msg); err == nil {
    						p.goVersion = constraint.GoVersion(x)
    					}
    				}
    				if pragh != nil {
    					p.pragma = pragh(p.posAt(line, col+2), p.scanner.blank, text, p.pragma) // +2 to skip over // or /*
    				}
    			}
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
Back to top