Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 377 for Constraint (0.33 sec)

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

            ]
    
        }
    
        def "should fail if required module is rejected"() {
            given:
            repository {
                'org:foo:1.0'()
                'org:bar:1.0' {
                    constraint(group: 'org', artifact: 'foo', rejects: ['+'])
                }
            }
    
            buildFile << """
                dependencies {
                    conf 'org:foo:1.0'
                    conf 'org:bar:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

            then:
            failure.assertHasCause("Cannot map a dependency of type ")
        }
    
        @ToBeFixedForConfigurationCache
        def "export fails when external dependency defines both branch and version constraint"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'swift-library'
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

        "RankedTensorType::get({" # len # "}, $_builder.getIntegerType(32)), $0)";
    }
    
    // Constraint that Attr has values [1, X, Y, 1]
    def IsIntList1XY1 : AttrConstraint<CPred<"TFIntListIs1XY1($_self)">>;
    
    // Constraint that Attr has values [1, 1, X, Y]
    def IsIntList11XY : AttrConstraint<CPred<"TFIntListIs11XY($_self)">>;
    
    // Constraint that values in list attribute are all ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    func (check *Checker) declareTypeParam(name *syntax.Name, scopePos syntax.Pos) *TypeParam {
    	// Use Typ[Invalid] for the type constraint to ensure that a type
    	// is present even if the actual constraint has not been assigned
    	// yet.
    	// TODO(gri) Need to systematically review all uses of type parameter
    	//           constraints to make sure we don't rely on them if they
    	//           are not properly set yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            }
    
            return preferResults;
        }
    
        /**
         * Given the result of resolving any 'prefer' constraints, see if these can be used to further refine the results
         *  of resolving the 'require' constraints.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/dependencies/TestSuitesGroovyDSLDependenciesIntegrationTest.groovy

            testing {
                suites {
                    test {
                        dependencies {
                            // Constrain commons-lang3 and guava
                            implementation constraint('org.apache.commons:commons-lang3:3.12.0')
                            implementation constraint('com.google.guava:guava:33.0.0-jre')
                        }
                    }
                    integTest(JvmTestSuite) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 11 16:25:08 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/go/types/decl.go

    	// Use Typ[Invalid] for the type constraint to ensure that a type
    	// is present even if the actual constraint has not been assigned
    	// yet.
    	// TODO(gri) Need to systematically review all uses of type parameter
    	//           constraints to make sure we don't rely on them if they
    	//           are not properly set yet.
    	for _, name := range names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // finishing an execution node. Adding this constraint here means that we can make all build operation queue workers compliant with this
                            // constraint and then gradually roll this out to other worker threads, such as task action workers.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                    Object dependencyValue = mergeError.getRightValue();
                    return "Inconsistency between attributes of a constraint and a dependency, on attribute '" + attribute + "' : dependency requires '" + dependencyValue + "' while constraint required '" + constraintValue + "'";
                });
                return;
            } catch (Exception t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

      "quant::CastQuantizedTypeAttrFromExpressedType($_builder, $0, $1.getType(), " # i # ")">;
    
    class CanUpdateShapeWithAxis<int i> : Constraint<
      CPred<"quant::CastQuantizedTypeAttrFromExpressedType($_builder, $0, $1.getType(), " # i # ")">>;
    
    class UsedBy<string op> : Constraint<
      CPred<"llvm::isa<mlir::TFL::" # op # "Op>(*$0.getUsers().begin())">>;
    
    // When the op is passing-through, the output types of the quantized ops need
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top