Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 596 for Constraint (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top