Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,092 for Compatible (0.27 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/util/DefaultJavaForkOptionsTest.groovy

            then:
            1 * target.jvmArgs(['argFromProvider'])
        }
    
        def "defaults are compatible"() {
            def other = new DefaultJavaForkOptions(resolver, fileCollectionFactory, new DefaultJavaDebugOptions())
    
            expect:
            options.isCompatibleWith(other)
        }
    
        def "is compatible with identical options"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

            this.compatible = new BitSet(candidates.size());
            compatible.set(0, candidates.size());
        }
    
        public int[] getMatches() {
            findCompatibleCandidates();
            if (compatible.cardinality() <= 1) {
                return getCandidates(compatible);
            }
            if (longestMatchIsSuperSetOfAllOthers()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

                this.name = name;
                this.candidateAttributes = attributes.asImmutable();
                this.candidateCapabilities = candidateCapabilities;
                this.compatible = compatible;
                this.incompatible = incompatible;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                assertHasAccepted(
                    "Method com.example.Task.getSourceCompatibility(): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method return type has changed", "Method is now abstract"),
                    "Method com.example.Task.setSourceCompatibility(java.lang.String): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method has been removed")
                )
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

         *
         * <p>A compatibility rule can tell if two values are compatible.
         * Compatibility doesn't mean equality. Typically two different Java platforms can be
         * compatible, without being equal.</p>
         *
         * <p>A rule <i>can</i> express an opinion by calling the @{link {@link CompatibilityCheckDetails#compatible()}}
         * method to tell that two attributes are compatible, or it <i>can</i> call {@link CompatibilityCheckDetails#incompatible()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    1. Each candidate's attribute value is compared to the consumer's requested attribute value. A candidate is considered compatible if its value matches the consumer's value exactly, passes the attribute's compatibility rule or is not provided.
    2. If only one candidate is considered compatible, that candidate wins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                    // consumer didn't express any preferences, everything fits
                    details.compatible();
                    return;
                }
                if (consumerValue.getName().equals(Usage.JAVA_API)) {
                    if (COMPATIBLE_WITH_JAVA_API.contains(producerValue.getName())) {
                        details.compatible();
                    }
                    return;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/TargetJvmVersionRulesTest.groovy

        def "check compatibility rules"() {
            CompatibilityCheckResult details = Mock(CompatibilityCheckResult)
    
            when:
            compatibilityRules.execute(details)
    
            then:
            1 * details.getConsumerValue() >> consumer
            1 * details.getProducerValue() >> producer
    
            if (compatible) {
                1 * details.compatible()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 03 17:43:36 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnLibraryTooNewFailureDescriberIntegrationTest.groovy

       > Could not resolve project :producer.
         Required by:
             project :consumer
          > Dependency resolution is looking for a library compatible with JVM runtime version $currentJava, but 'project :producer' is only compatible with JVM runtime version $tooHighJava or newer.""")
            failure.assertHasErrorOutput("Caused by: " + VariantSelectionException.class.getName())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    // NewExpressions environment to be compatible with that version. The EnvSet also
    // prepares StoredExpressions to be compatible with all known versions of Kubernetes.
    type EnvSet struct {
    	// compatibilityVersion is the version that all configuration in
    	// the NewExpressions environment is compatible with.
    	compatibilityVersion *version.Version
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top