Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 278 for Constraint (0.17 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

            DependencyHandler dependencyHandler = resolutionContext.getDependencyHandler();
            configuration.getDependencyConstraints().add(dependencyHandler.getConstraints().create(Log4jBannedVersion.LOG4J2_CORE_COORDINATES, constraint -> constraint.version(version -> {
                version.require(Log4jBannedVersion.LOG4J2_CORE_REQUIRED_VERSION);
                version.reject(Log4jBannedVersion.LOG4J2_CORE_VULNERABLE_VERSION_RANGE);
            })));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    only by blank lines and other comments. These rules mean that in Go
    files a build constraint must appear before the package clause.
    
    To distinguish build constraints from package documentation,
    a build constraint should be followed by a blank line.
    
    A build constraint comment is evaluated as an expression containing
    build tags combined by ||, &&, and ! operators and parentheses.
    Operators have the same meaning as in Go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/MessageBuilderHelper.java

                EdgeState target = Iterators.getLast(path.iterator());
                StringBuilder sb = new StringBuilder();
                if (target.getSelector().getDependencyMetadata().isConstraint()) {
                    sb.append("Constraint path ");
                } else {
                    sb.append("Dependency path ");
                }
                boolean first = true;
                String variantDetails = null;
                for (EdgeState e : path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. pkg/controller/resourcequota/resource_quota_controller.go

    		rq.missingUsageQueue.Add(key)
    		return
    	}
    
    	// if we declared a constraint that has no usage (which this controller can calculate, prioritize it)
    	for constraint := range resourceQuota.Status.Hard {
    		if _, usageFound := resourceQuota.Status.Used[constraint]; !usageFound {
    			matchedResources := []v1.ResourceName{constraint}
    			for _, evaluator := range rq.registry.List() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. schema/relationship_test.go

    	}
    
    	expectedConstraintName := "fk_my_schema_a_very_very_very_very_very_very_very_very_l4db13eec"
    	constraint := s.Relationships.Relations["Author"].ParseConstraint()
    
    	if constraint.Name != expectedConstraintName {
    		t.Fatalf(
    			"expected constraint name %s, got %s",
    			expectedConstraintName,
    			constraint.Name,
    		)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    	replaceDirective = "REPLACE"
    	accessDirective  = "ACCESS"
    )
    
    // Parses location constraint from the incoming reader.
    func parseLocationConstraint(r *http.Request) (location string, s3Error APIErrorCode) {
    	// If the request has no body with content-length set to 0,
    	// we do not have to validate location constraint. Bucket will
    	// be created at default region.
    	locationConstraint := createBucketLocationConfiguration{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    	keys := []string{}
    	for key := range item {
    		keys = append(keys, string(key))
    	}
    	sort.Strings(keys)
    	for _, key := range keys {
    		value := item[corev1.ResourceName(key)]
    		constraint := key + "=" + value.String()
    		parts = append(parts, constraint)
    	}
    	return strings.Join(parts, ",")
    }
    
    func prettyPrintResourceNames(a []corev1.ResourceName) string {
    	values := []string{}
    	for _, value := range a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

    rootProject.name = 'testproject'
    """
            expect:
            fails "help"
            failureHasCause("Conflict found for the following module:")
        }
    
        @Issue("gradle/gradle#19300")
        def 'carries implicit constraint for log4j-core'() {
            given:
            mavenRepo().module('org.apache.logging.log4j', 'log4j-core', '2.17.1').publish()
    
            and:
            settingsFile << """
                buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top