Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for Constraint (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        constraint("org:databind:2.9.0")
                        constraint("org:core:2.9.0")
                        constraint("org:annotations:2.9.0")
                    }
                    '2.9.4' {
                        asPlatform()
                        constraint("org:databind:2.9.4")
                        constraint("org:core:2.9.4")
                        constraint("org:annotations:2.9.0")
                    }
                    '2.9.4.1' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                }
                constraint('commons-logging:commons-logging:1.1') { rejects() }
    
                noMoreDependencies()
            }
    
            javaLibrary.parsedModuleMetadata.variant('runtimeElements') {
                dependency('org.springframework:spring-core:1.2.9') {
                    rejects()
                    noMoreExcludes()
                }
                constraint('commons-logging:commons-logging:1.1') { rejects() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go

    			// | P{foo} | P{foo, bar} |        | P{foo} P{bar} |
    			// +--------+-------------+--------+---------------+
    			// For the first constraint (zone): the matching pods spread as 2/2/1/1
    			// For the second constraint (node): the matching pods spread as 0/1/0/1
    			name: "two Constraints on zone and node, with different labelSelectors",
    			pod: st.MakePod().Name("p").Label("foo", "").Label("bar", "").
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 60K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top