Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 596 for Constraint (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/GradleDependencyMetadata.java

        private final List<ExcludeMetadata> excludes;
        private final boolean constraint;
        private final boolean endorsing;
        private final String reason;
        private final boolean force;
        private final List<IvyArtifactName> artifacts;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/list_load_err.txt

    -- scan/good.go --
    package scan
    
    import _ "m/want"
    
    -- multi/a.go --
    package a
    
    -- multi/b.go --
    package b
    
    import _ "m/want"
    
    -- constraint/constraint.go --
    // +build !!nope
    
    package constraint
    
    -- constraint/good.go --
    package constraint
    
    import _ "m/want"
    
    -- cgotest/cgo_test.go --
    package cgo_test
    
    // cgo is not allowed in tests.
    // See golang.org/issue/18647
    
    import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyConstraint.java

         *
         * @since 4.6
         */
        void because(@Nullable String reason);
    
        /**
         * Returns the attributes for this constraint. Mutation of the attributes of a constraint must be done through
         * the {@link #attributes(Action)} method.
         *
         * @return the attributes container for this dependency
         *
         * @since 4.8
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultDependencyConstraintTest.groovy

            expect:
            constraint("group1", "name1", "version1") == constraint("group1", "name1", "version1")
            constraint("group1", "name1", "version1").hashCode() == constraint("group1", "name1", "version1").hashCode()
            constraint("group1", "name1", "version1") != constraint("group1", "name1", "version2")
            constraint("group1", "name1", "version1") != constraint("group1", "name2", "version1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 08 06:14:35 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeparam.go

    // than one type will result in a panic.
    //
    // The constraint argument can be nil, and set later via SetConstraint. If the
    // constraint is non-nil, it must be fully defined.
    func NewTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	return (*Checker)(nil).newTypeParam(obj, constraint)
    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/common/attrs_and_constraints.td

    def AreTheSameElementType : Constraint<
      CPred<"$0.getType() == $1.getType()">>;
    
    // Checks if the given two values are the same.
    def AreTheSameValue : Constraint<
      CPred<"$0 == $1">>;
    
    // Checks if the value has rank.
    def HasRank : Constraint<
      CPred<"$0.getType().cast<ShapedType>().hasRank()">>;
    
    // Checks if the value has rank of `n`.
    class HasRankOf<int n> : Constraint<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 08 04:55:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    	goBuildPos   token.Pos       // position of first go:build line found
    	plusBuildPos token.Pos       // position of first "+build" line found
    	goBuild      constraint.Expr // go:build constraint found
    	plusBuild    constraint.Expr // AND of +build constraints found
    }
    
    func (check *checker) init(pass *analysis.Pass) {
    	check.pass = pass
    	check.goBuildOK = true
    	check.plusBuildOK = true
    	check.crossCheck = true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ModuleComponentSelectorSerializerTest.groovy

            when:
            def constraint = new DefaultMutableVersionConstraint('')
            constraint.branch = 'custom-branch'
            def result = serialize(newSelector(UTIL, constraint, ImmutableAttributes.EMPTY, []), serializer)
    
            then:
            result == newSelector(UTIL, constraint, ImmutableAttributes.EMPTY, [])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. schema/constraint_test.go

    	results := map[string]schema.CheckConstraint{
    		"name_checker": {
    			Name:       "name_checker",
    			Constraint: "name <> 'jinzhu'",
    		},
    		"chk_user_checks_name2": {
    			Name:       "chk_user_checks_name2",
    			Constraint: "name <> 'jinzhu'",
    		},
    		"chk_user_checks_name3": {
    			Name:       "chk_user_checks_name3",
    			Constraint: "name <> 'jinzhu'",
    		},
    	}
    
    	checks := user.ParseCheckConstraints()
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AuthScheme.groovy

            }
    
            private ConstraintMapping createConstraintMapping(String path) {
                def constraint = new Constraint()
                constraint.name = constraintName()
                constraint.authenticate = true
                constraint.roles = [Constraint.ANY_ROLE, Constraint.ANY_AUTH, TestUserRealm.ROLE] as String[]
                def constraintMapping = new ConstraintMapping()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top