Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,131 for Constraint (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyModuleResolveMetadata.java

         *
         * @return the extra info for the module
         */
        ImmutableMap<NamespaceId, String> getExtraAttributes();
    
        /**
         * Returns this metadata with all dependencies transformed to use the dynamic constraint version.
         */
        IvyModuleResolveMetadata withDynamicConstraintVersions();
    
        ImmutableList<IvyDependencyDescriptor> getDependencies();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. migrator.go

    	DropColumn(dst interface{}, field string) error
    	AlterColumn(dst interface{}, field string) error
    	MigrateColumn(dst interface{}, field *schema.Field, columnType ColumnType) error
    	// MigrateColumnUnique migrate column's UNIQUE constraint, it's part of MigrateColumn.
    	MigrateColumnUnique(dst interface{}, field *schema.Field, columnType ColumnType) error
    	HasColumn(dst interface{}, field string) bool
    	RenameColumn(dst interface{}, oldName, field string) error
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

            then:
            noExceptionThrown()
    
            when:
            runAndFail("missingPath")
    
            then:
            failureHasCause("Required keys [path] are missing from map")
        }
    
        def "can add constraint on root project"() {
            given:
            mavenRepo.module("org", "foo").publish()
            buildFile << """
                configurations {
                    dependencyScope("deps")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraphController.java

         * Creates a new, empty work graph for this build.
         *
         * Note: Only one thread can be using worker graphs from a build, and this method blocks if some other thread is using a graph for this build.
         * Eventually, this constraint should be removed, so that it is possible to populate and run multiple work graphs concurrently.
         */
        BuildWorkGraph newWorkGraph();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

            then:
            failure.assertHasCause("Cannot map a dependency of type ")
        }
    
        @ToBeFixedForConfigurationCache
        def "export fails when external dependency defines both branch and version constraint"() {
            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'swift-library'
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  6. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformEcosystemIntegrationTest.groovy

        /**
         * I think the test above: {@link JavaPlatformEcosystemIntegrationTest#"Configuration.copy() should when configuration contains project dependency constraints"}
         * should be sufficient to cover this case, which seems to apply to any configurations that has a project dependency constraint
         * and is independent of the involvement of the Java Platform plugin.  But I'll leave this test here just in case for now.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/SelectorStateResolver.java

            }
    
            return preferResults;
        }
    
        /**
         * Given the result of resolving any 'prefer' constraints, see if these can be used to further refine the results
         *  of resolving the 'require' constraints.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 14:22:29 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    func (check *Checker) declareTypeParam(name *syntax.Name, scopePos syntax.Pos) *TypeParam {
    	// Use Typ[Invalid] for the type constraint to ensure that a type
    	// is present even if the actual constraint has not been assigned
    	// yet.
    	// TODO(gri) Need to systematically review all uses of type parameter
    	//           constraints to make sure we don't rely on them if they
    	//           are not properly set yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

        "RankedTensorType::get({" # len # "}, $_builder.getIntegerType(32)), $0)";
    }
    
    // Constraint that Attr has values [1, X, Y, 1]
    def IsIntList1XY1 : AttrConstraint<CPred<"TFIntListIs1XY1($_self)">>;
    
    // Constraint that Attr has values [1, 1, X, Y]
    def IsIntList11XY : AttrConstraint<CPred<"TFIntListIs11XY($_self)">>;
    
    // Constraint that values in list attribute are all ones.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. test/typeparam/index.go

    package main
    
    import (
    	"fmt"
    )
    
    // Index returns the index of x in s, or -1 if not found.
    func Index[T comparable](s []T, x T) int {
    	for i, v := range s {
    		// v and x are type T, which has the comparable
    		// constraint, so we can use == here.
    		if v == x {
    			return i
    		}
    	}
    	return -1
    }
    
    type obj struct {
    	x int
    }
    
    type obj2 struct {
    	x int8
    	y float64
    }
    
    type obj3 struct {
    	x int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top