Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for Constraint (0.6 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    // Type() == typ. For *types.TypeParam, *types.Interface, and *types.Union, see
    // below.
    //
    // Structural type restrictions of a type parameter are created via
    // non-interface types embedded in its constraint interface (directly, or via a
    // chain of interface embeddings). For example, in the declaration type
    // T[P interface{~int; m()}] int the structural restriction of the type
    // parameter P is ~int.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. tensorflow/compiler/mlir/lite/quantization/ir/ConvertSimQuant.cc

        assert(quantizedType &&
               "Converter accepted a type that it did not convert");
    
        // TODO: Map to a qbarrier with an attribute like [Forced] to signal that
        // this is a forced/hard-coded constraint.
        auto qbarrier = rewriter.create<QuantizeCastOp>(op.getLoc(), quantizedType,
                                                        op.getInputs());
        rewriter.replaceOpWithNewOp<DequantizeCastOp>(op, converter.input_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. schema/naming.go

    }
    
    // IndexName generate index name
    func (ns NamingStrategy) IndexName(table, column string) string {
    	return ns.formatName("idx", table, ns.toDBName(column))
    }
    
    // UniqueName generate unique constraint name
    func (ns NamingStrategy) UniqueName(table, column string) string {
    	return ns.formatName("uni", table, ns.toDBName(column))
    }
    
    func (ns NamingStrategy) formatName(prefix, table, name string) string {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    new" field or method of a type that is itself "too new", as this may
    have false positives, for example if fields or methods are accessed
    through a type alias that is guarded by a Go version constraint.
    `
    
    var Analyzer = &analysis.Analyzer{
    	Name:             "stdversion",
    	Doc:              Doc,
    	Requires:         []*analysis.Analyzer{inspect.Analyzer},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/VersionConstraint.java

    import org.gradle.api.Describable;
    import org.gradle.internal.HasInternalProtocol;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Represents a constraint that is used to match module versions to a dependency.
     * Each of {@link #getPreferredVersion()}, {@link #getRequiredVersion()} and {@link #getStrictVersion()} is represented by a version String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 11:49:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

                                    llvm::SmallVector<Attribute>& results) {
      // If any operand is nullptr returns true for a failure.
      // TODO(b/120678030): remove this constraint if we find operators can be
      // evaluated with some unknown operands.
      if (std::any_of(operands.begin(), operands.end(),
                      [](Attribute operand) { return !operand; })) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. src/crypto/ecdh/nist.go

    	"errors"
    	"internal/byteorder"
    	"io"
    	"math/bits"
    )
    
    type nistCurve[Point nistPoint[Point]] struct {
    	name        string
    	newPoint    func() Point
    	scalarOrder []byte
    }
    
    // nistPoint is a generic constraint for the nistec Point types.
    type nistPoint[T any] interface {
    	Bytes() []byte
    	BytesX() ([]byte, error)
    	SetBytes([]byte) (T, error)
    	ScalarMult(T, []byte) (T, error)
    	ScalarBaseMult([]byte) (T, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. build-logic-commons/build-platform/build.gradle.kts

    import groovy.lang.GroovySystem
    import org.gradle.util.internal.VersionNumber
    
    plugins {
        `java-platform`
    }
    
    group = "gradlebuild"
    
    description = "Provides a platform that constrains versions of external dependencies used by Gradle"
    
    // Here you should declare versions which should be shared by the different modules of buildSrc itself
    val javaParserVersion = "3.18.0"
    val groovyVersion = GroovySystem.getVersion()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top