Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 865 for Constraint (0.19 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/tests/dependenciesWithBOM.out

         +--- com.fasterxml.jackson.core:jackson-core:2.9.5 (*)
         \--- com.fasterxml.jackson.core:jackson-databind:2.9.5 (*)
    
    (c) - A dependency constraint, not a dependency. The dependency affected by the constraint occurs elsewhere in the tree.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/ResolvableSelectorState.java

    public interface ResolvableSelectorState {
        /**
         * The raw component selector being resolved, after any substitution.
         */
        ComponentSelector getSelector();
    
        /**
         * The version constraint that applies to this selector, if any.
         * Will return null for a project selector.
         */
        @Nullable
        ResolvedVersionConstraint getVersionConstraint();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

            diag << "entities 'mul_value' failed to satisfy constraint: "
                    "unsupported dimensions";
          });
        }
        if (!is_dynamic_broadcast &&
            !((*conv_op.getODSResults(0).begin()).hasOneUse())) {
          return rewriter.notifyMatchFailure(mul_op, [&](::mlir::Diagnostic &diag) {
            diag << "entities 'conv' failed to satisfy constraint: has one use";
          });
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

             * Defines a link between nodes created through a dependency constraint.
             */
            NodeBuilder constraint(String requested, String selectedModuleVersionId = requested, @DelegatesTo(NodeBuilder) Closure cl = {}) {
                def node = graph.moduleNode(selectedModuleVersionId)
                def edge = new EdgeBuilder(this, requested, node)
                edge.constraint = true
                deps << edge
                applyTo(node, cl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectionReasons.java

        public static final ComponentSelectionDescriptorInternal CONSTRAINT = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.CONSTRAINT);
        public static final ComponentSelectionDescriptorInternal REJECTION = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.REJECTION);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	}
    	var constraint string
    	if ttp.Constraint == nil {
    		constraint = fmt.Sprintf("%*sConstraint: nil", indent+2, "")
    	} else {
    		constraint = ttp.Constraint.goString(indent+2, "Constraint: ")
    	}
    	return fmt.Sprintf("%*s%sTemplateTemplateParam:\n%s\n%s\n%s", indent, "", field,
    		ttp.Name.goString(indent+2, "Name: "),
    		params.String(),
    		constraint)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilder.java

    public class ResolutionResultGraphBuilder implements ResolvedComponentVisitor {
        private static final DefaultComponentSelectionDescriptor DEPENDENCY_LOCKING = new DefaultComponentSelectionDescriptor(ComponentSelectionCause.CONSTRAINT, Describables.of("Dependency locking"));
        private final Long2ObjectMap<DefaultResolvedComponentResult> components = new Long2ObjectOpenHashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishResolvedVersionsJavaIntegTest.groovy

            then:
            javaLibrary.mavenModule.removeGradleMetadataRedirection()
            javaLibrary.assertPublished()
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
                constraint("org.test:bar:1.1") {
                    exists()
                }
                dependency("org.test:foo:1.0") {
                    exists()
                }
                noMoreDependencies()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 18:52:27 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. src/go/build/doc.go

    //	            foo/
    //	                bar.a          (installed package object)
    //
    // # Build Constraints
    //
    // A build constraint, also known as a build tag, is a condition under which a
    // file should be included in the package. Build constraints are given by a
    // line comment that begins
    //
    //	//go:build
    //
    // Build constraints may also be part of a file's name
    // (for example, source_windows.go will only be included if the target
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/cmp/cmp.go

    // Package cmp provides types and functions related to comparing
    // ordered values.
    package cmp
    
    // Ordered is a constraint that permits any ordered type: any type
    // that supports the operators < <= >= >.
    // If future releases of Go add new ordered types,
    // this constraint will be modified to include them.
    //
    // Note that floating-point types may contain NaN ("not-a-number") values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top