Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,080 for Constraint (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/gradle/VariantMetadataSpec.groovy

        }
    
        void constraint(String group, String module, String version, String reason = null, Map<String, ?> attributes = [:]) {
            dependencyConstraints << new DependencyConstraintSpec(group, module, version, null, null, null, reason, attributes)
        }
    
        void constraint(String notation) {
            def gav = notation.split(':')
            constraint(gav[0], gav[1], gav[2])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/go/build/constraint/expr.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package constraint implements parsing and evaluation of build constraint lines.
    // See https://golang.org/cmd/go/#hdr-Build_constraints for documentation about build constraints themselves.
    //
    // This package parses both the original “// +build” syntax and the “//go:build” syntax that was added in Go 1.17.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenVersionScheme.java

            return delegate.parseVersionRange(range);
        }
    
        @Override
        public VersionConstraint parseVersionConstraint(String constraint) throws InvalidVersionSpecificationException {
            return delegate.parseVersionConstraint(constraint);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultVersionParser.java

            return modelVersionParser.parseVersionRange(range);
        }
    
        @Override
        public VersionConstraint parseVersionConstraint(String constraint) {
            return modelVersionParser.parseVersionConstraint(constraint);
        }
    
        @Override
        public boolean isSnapshot(String version) {
            return modelVersionParser.isSnapshot(version);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/AbstractGradlePomModuleDescriptorParserTest.groovy

            elements.find { !it.constraint }
        }
    
        static <T extends MavenDependencyDescriptor> List<T> dependenciesOnly(Iterable<T> unfiltered) {
            unfiltered.findAll { !it.constraint }
        }
    
        static <T extends MavenDependencyDescriptor> List<T> constraintsOnly(Iterable<T> unfiltered) {
            unfiltered.findAll { it.constraint }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                }
                constraint('commons-logging:commons-logging:1.1') { rejects() }
    
                noMoreDependencies()
            }
    
            javaLibrary.parsedModuleMetadata.variant('runtimeElements') {
                dependency('org.springframework:spring-core:1.2.9') {
                    rejects()
                    noMoreExcludes()
                }
                constraint('commons-logging:commons-logging:1.1') { rejects() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top