Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,021 for Constraint (0.32 sec)

  1. src/internal/trace/event/requirements.go

    package event
    
    // SchedReqs is a set of constraints on what the scheduling
    // context must look like.
    type SchedReqs struct {
    	Thread    Constraint
    	Proc      Constraint
    	Goroutine Constraint
    }
    
    // Constraint represents a various presence requirements.
    type Constraint uint8
    
    const (
    	MustNotHave Constraint = iota
    	MayHave
    	MustHave
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 685 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                    project(":b", "test:b:") {
                        configuration = "conf"
                        noArtifacts()
                        constraint("org:foo:1.1", "org:foo:1.1").byConstraint('transitive dependency constraint')
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyConstraintTest.groovy

        def "can copy project dependency constraint"() {
            setup:
            DefaultProjectDependencyConstraint constraint = createProjectDependencyConstraint()
            constraint.force = true
            constraint.reason = "reason"
    
            when:
            def constraintCopy = constraint.copy()
    
            then:
            constraintCopy.group == constraint.group
            constraintCopy.name == constraint.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorIntegrationTest.groovy

                ${createDependenciesAndConfiguration()}
    
                dependencies {
                    implementation(constraint("com:foo:1.0"))
                }
    
                def constraint = configurations.conf.dependencyConstraints.find { it.name == "foo" }
                constraint.version {
                    require("2.0")
                }
            """
    
            when:
            fails("help")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.h

        ValuesConstraintSet& constraints, bool resolve = false,
        bool emit_remarks = false);
    
    // Emits constraints remarks for all operations that use constrained values.
    void EmitValueConstraintsRemarks(const ValuesConstraintSet& constraints);
    
    // Emits constraints remarks for function inputs that are in the constraints
    // set (entry block arguments have constraints).
    void EmitInputsConstraintsRemarks(func::FuncOp func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains="" />
            <constraint name="TYPE" within="" contains="" />
            <constraint name="ARR" nameOfExprType=".*\[\]" within="" contains="" />
            <constraint name="RES" nameOfExprType="boolean" exprTypeWithinHierarchy="true" within="" contains="" />
            <constraint name="ITEM" within="" contains="" />
            <constraint name="TARGET" within="" contains="" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top