Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,131 for Constraint (0.14 sec)

  1. 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)
  2. src/cmd/go/testdata/script/test_vet.txt

    # Test with ...
    ! go test ./vetfail/...
    stderr 'Printf format %d'
    stdout 'ok\s+m/vetfail/p2'
    
    # Check there's no diagnosis of a bad build constraint in vetxonly mode.
    # Use -a so that we need to recompute the vet-specific export data for
    # vetfail/p1.
    go test -a m/vetfail/p2
    ! stderr 'invalid.*constraint'
    
    -- go.mod --
    module m
    
    go 1.16
    -- p1_test.go --
    package p
    
    import "testing"
    
    func Test(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionReason.java

         *
         * @since 4.5
         */
        boolean isCompositeSubstitution();
    
        /**
         * Informs whether the selected component version has been influenced by a dependency constraint.
         *
         * @return true if a dependency constraint influenced the selection of this component
         *
         * @since 4.6
         */
        boolean isConstrained();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Aug 28 21:50:20 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/DependencyResult.java

         *
         * @return the origin of the dependency
         */
        ResolvedComponentResult getFrom();
    
        /**
         * Indicates if this dependency edge originated from a dependency constraint.
         *
         * @return true if the dependency is a constraint.
         * @since 5.1
         */
        boolean isConstraint();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultProjectDependencyConstraint.java

    import org.gradle.api.internal.artifacts.DefaultModuleIdentifier;
    
    import javax.annotation.Nullable;
    import java.util.Collections;
    
    /**
     * A limited use, project dependency constraint mostly aimed at publishing
     * platforms.
     */
    public class DefaultProjectDependencyConstraint extends AbstractDependencyConstraint {
        private final ProjectDependency projectDependency;
        private String reason;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/MutationValidator.java

            /**
             * The mutation of the attributes (other than coordinates) of a dependency constraint.
             * Theoretically these should be bundled under {@link MutationType#DEPENDENCIES}, but these mutations are not (yet)
             * prevented on resolved configurations.
             */
            DEPENDENCY_CONSTRAINT_ATTRIBUTES("dependency constraint attributes"),
    
            /**
             * The mutation of the artifacts of the configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:26:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.td

    class IsBoolAttrEqual<string true_or_false> : Constraint<CPred<
      "$0.getValue() == "#true_or_false#"">>;
    
    // Receives a composite DictionaryAttr as an argument and checks if one of the
    // its attributes (with the name `attr_name`) is of type `attribute` and has
    // the value `val`.
    class IsCompositeAttribute<string attr_name, Attr attribute, string val>:
      Constraint<CPred<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top