Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,131 for Constraint (0.16 sec)

  1. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                    project(":platform", "org.test:platform:1.9") {
                        variant("runtimeElements", ['org.gradle.usage': 'java-runtime', 'org.gradle.category': 'platform'])
                        constraint("org:foo:1.1")
                        constraint("org:bar:1.2")
                        noArtifacts()
                    }
                    edge('org:foo', 'org:foo:1.1') {
                        configuration = "runtime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

                        constraint("org:databind:2.9.0")
                        constraint("org:core:2.9.0")
                        constraint("org:annotations:2.9.0")
                    }
                    '2.9.4' {
                        asPlatform()
                        constraint("org:databind:2.9.4")
                        constraint("org:core:2.9.4")
                        constraint("org:annotations:2.9.0")
                    }
                    '2.9.4.1' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                            }
                        }
                    }
                    // The following constraints come from the compile classpath configuration resolution result
                    constraint("org:foo:{strictly 1.0}", "org:foo:1.0")
                    constraint("org:fooA:{strictly 1.0}", "org:fooA:1.0")
                    constraint("org:transitive:{strictly 1.0}", "org:transitive:1.0")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue42881.go

    	T2 interface{ int }
    )
    
    var (
    	_ comparable // ERROR "cannot use type comparable outside a type constraint: interface is (or embeds) comparable"
    	_ T1         // ERROR "cannot use type T1 outside a type constraint: interface is (or embeds) comparable"
    	_ T2         // ERROR "cannot use type T2 outside a type constraint: interface contains type constraints"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 567 bytes
    - Viewed (0)
  5. src/crypto/x509/verify.go

    	// least one label must be prepended, but only for URI and email
    	// constraints, not DNS constraints. The code also supports that
    	// behaviour for DNS constraints.
    
    	mustHaveSubdomains := false
    	if constraint[0] == '.' {
    		mustHaveSubdomains = true
    		constraint = constraint[1:]
    	}
    
    	constraintLabels, ok := domainToReverseLabels(constraint)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsFeatureInteractionIntegrationTest.groovy

    import org.gradle.integtests.resolve.AbstractModuleDependencyResolveTest
    
    class StrictVersionConstraintsFeatureInteractionIntegrationTest extends AbstractModuleDependencyResolveTest {
        def "can turn constraint into strict constraint by using a component metadata rule"() {
            given:
            repository {
                'org:foo:1.0'() {
                    dependsOn 'org:baz:2.0'
                }
                'org:bar:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. src/crypto/x509/name_constraints_test.go

    				if err != nil {
    					return nil, nil, nil, nil, err
    				}
    				ips = append(ips, ipNet)
    
    			case strings.HasPrefix(constraint, "email:"):
    				emailAddrs = append(emailAddrs, constraint[6:])
    
    			case strings.HasPrefix(constraint, "uri:"):
    				uriDomains = append(uriDomains, constraint[4:])
    
    			default:
    				return nil, nil, nil, nil, fmt.Errorf("unknown constraint %q", constraint)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/PersistentVcsMetadataCache.java

            cache.useCache(() -> workingDirCache.put(constraintCacheKey(repository, constraint), selectedVersion));
        }
    
        private String constraintCacheKey(VersionControlRepositoryConnection repository, VersionConstraint constraint) {
            if (constraint.getBranch() != null) {
                return repository.getUniqueId() + ":b:" + constraint.getBranch();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/go/types/typeparam.go

    // than one type will result in a panic.
    //
    // The constraint argument can be nil, and set later via SetConstraint. If the
    // constraint is non-nil, it must be fully defined.
    func NewTypeParam(obj *TypeName, constraint Type) *TypeParam {
    	return (*Checker)(nil).newTypeParam(obj, constraint)
    }
    
    // check may be nil
    func (check *Checker) newTypeParam(obj *TypeName, constraint Type) *TypeParam {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

                            constraint("org.springframework:spring-core:${springVersion}")
                            constraint("org.springframework:spring-aop:${springVersion}")
                            constraint("org.springframework:spring-beans:${springVersion}")
                            constraint("org.springframework:spring-context:${springVersion}")
                            constraint("org.springframework:spring-expression:${springVersion}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top