Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 85 of 85 for attributesSchema (0.2 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.attributes.AttributesSchema.getAttributeDisambiguationPrecedence()> does not have raw return type assignable to org.gradle.api.provider.Property in (AttributesSchema.java:0)
    Method <org.gradle.api.attributes.AttributesSchema.getAttributes()> does not have raw return type assignable to org.gradle.api.provider.Provider in (AttributesSchema.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                writeText("${inputFile.name}: ${inputFile.length()}")
            }
        }
    }
    
    val summarized = Attribute.of("summarized", Boolean::class.javaObjectType)
    dependencies {
        attributesSchema {
            attribute(summarized)
        }
        artifactTypes.create("txt") {
            attributes.attribute(summarized, false)
        }
        registerTransform(Summarize::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                configurations.all {
                    afterEvaluate {
                        attributes.attribute(counted, true)
                    }
                }
    
                dependencies {
                    attributesSchema {
                        attribute(artifactType)
                    }
    
                    artifactTypes.getByName("jar") {
                        attributes.attribute(counted, false)
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    === Updates to Attribute Disambiguation Rules related methods
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                    }
                }
            """
    
            buildFile << """
                plugins {
                    // This plugin is needed in order to get the proper AttributeSchema compatibility/disambiguation
                    // rules. Once we understand this reproducer better, we can likely construct a graph that does not
                    // need these resolution rules.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top