Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,131 for Constraint (0.13 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/VersionConstraint.java

    import org.apache.maven.api.annotations.Nullable;
    
    /**
     * Version constraint for dependency. Constraint is either a range ("[1,2)") or recommended version ("1.0").
     *
     * @since 4.0.0
     */
    @Experimental
    public interface VersionConstraint {
        /**
         * Returns the range of this constraint, or {@code null} if none.
         * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/LocalComponentDependencyMetadata.java

            List<ExcludeMetadata> excludes,
            boolean force, boolean changing, boolean transitive, boolean constraint, boolean endorsing,
            @Nullable String reason
        ) {
            this(selector, dependencyConfiguration, artifactNames, excludes, force, changing, transitive, constraint, endorsing, false, reason);
        }
    
        public LocalComponentDependencyMetadata(
            ComponentSelector selector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/test_cluster_ops_by_policy.cc

        if (auto result_constraint = results.GetConstraint(op->getResult(0))) {
          // `test.OpA` converts shape constraint to rank constraint.
          if (is_op_a && *result_constraint == ValueConstraint::kShape)
            operands.Insert(op->getOperand(0), ValueConstraint::kRank);
    
          // `test.OpB` converts value constraint to shape constraint.
          if (*result_constraint == ValueConstraint::kValue)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 04 09:19:38 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/AbstractDependencyMetadataRulesIntegrationTest.groovy

                        } else {
                            constraint('org.test:moduleB:1.0', 'org.test:moduleB:1.0')
                        }
                    }
                }
            }
    
            where:
            thing                    | notation | declaration
            "dependency constraints" | "string" | "'org.test:moduleB:1.0'"
            "dependency constraints" | "map"    | "group: 'org.test', name: 'moduleB', version: '1.0'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 36.5K bytes
    - Viewed (0)
  5. schema/relationship.go

    	sql = "CONSTRAINT ? FOREIGN KEY ? REFERENCES ??"
    	if constraint.OnDelete != "" {
    		sql += " ON DELETE " + constraint.OnDelete
    	}
    
    	if constraint.OnUpdate != "" {
    		sql += " ON UPDATE " + constraint.OnUpdate
    	}
    
    	foreignKeys := make([]interface{}, 0, len(constraint.ForeignKeys))
    	for _, field := range constraint.ForeignKeys {
    		foreignKeys = append(foreignKeys, clause.Column{Name: field.DBName})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  6. src/crypto/x509/cert_pool.go

    // constraint. When Certificate.Verify builds a chain which is rooted by cert,
    // it will additionally pass the whole chain to constraint to determine its
    // validity. If constraint returns a non-nil error, the chain will be discarded.
    // constraint may be called concurrently from multiple goroutines.
    func (s *CertPool) AddCertWithConstraint(cert *Certificate, constraint func([]*Certificate) error) {
    	if cert == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  7. src/internal/types/testdata/examples/typesets.go

    }
    
    // A type parameter may not be embedded in an interface;
    // so it can also not be used as a constraint.
    func _[A any, B A /* ERROR "cannot use a type parameter as constraint" */]()    {}
    func _[A any, B, C A /* ERROR "cannot use a type parameter as constraint" */]() {}
    
    // Error messages refer to the type constraint as it appears in the source.
    // (No implicit interface should be exposed.)
    func _[T string](x T) T {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/Dependencies.java

         *
         * @param dependencyConstraintNotation dependency constraint to add
         * @return the new dependency constraint
         * @see DependencyConstraintFactory#create(CharSequence) Valid dependency constraint notation for this method
         * @since 8.7
         */
        default DependencyConstraint constraint(CharSequence dependencyConstraintNotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 05:34:03 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyCollector.java

        /**
         * Add a dependency constraint.
         *
         * @param dependencyConstraint dependency constraint to add
         * @since 8.7
         */
        void addConstraint(DependencyConstraint dependencyConstraint);
    
        /**
         * Add a dependency constraint and configure it.
         *
         * @param dependencyConstraint dependency constraint to add
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyMetadata.java

     * Describes a metadata about a dependency - direct dependency or dependency constraint - declared in a resolved component's metadata.
     *
     * @param <SELF> type extending this interface
     * @since 4.4
     */
    public interface DependencyMetadata<SELF extends DependencyMetadata> {
    
        /**
         * Returns the group of the module that is targeted by this dependency or dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 16 13:58:18 UTC 2020
    - 2.9K bytes
    - Viewed (0)
Back to top