Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for Constraint (0.17 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/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        byConstraint()
                    }
                    constraint('org:test:1.0', 'org:test:1.0')
                }
            }
    
            and:
            outputDoesNotContain("Cannot set attributes for constraint \"org:test:1.0\": it was probably created by a plugin using internal APIs")
        }
    
        def "attributes declared on constraints contribute to graph selection"() {
            given:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    constraint("org.gradle.test:lib-ext:{strictly [1.0,1.1)}", "org.gradle.test:lib-ext:1.0")
                    edge("org.gradle.test:lib-core:1.+", "org.gradle.test:lib-core:1.0") {
                        notRequested()
                        byReasons(["rejected version 1.1", "constraint"])
                    }
                    edge("org.gradle.test:lib-ext", "org.gradle.test:lib-ext:1.0") {
                        byConstraint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  6. 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)
  7. tests/migrate_test.go

    			t.Fatalf("failed to drop constraint %v, got error %v", name, err)
    		}
    
    		if DB.Migrator().HasConstraint(&User{}, name) {
    			t.Fatalf("constraint %v should been deleted", name)
    		}
    
    		if err := DB.Migrator().CreateConstraint(&User{}, name); err != nil {
    			t.Fatalf("failed to create constraint %v, got error %v", name, err)
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top