Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for setAttributeDisambiguationPrecedence (0.61 sec)

  1. build-logic/documentation/src/test/groovy/gradlebuild/docs/FindBrokenInternalLinksTest.groovy

            given:
            sampleDoc << """
    === Invalid Javadoc Links
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 28 22:01:54 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

         * will fail.
         *
         * @param attributes the attributes in order
         *
         * @since 7.5
         * @see #setAttributeDisambiguationPrecedence(List)
         */
        @Incubating
        void attributeDisambiguationPrecedence(Attribute<?>... attributes);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/EmptySchemaTest.groovy

            EmptySchema.INSTANCE.attributeDisambiguationPrecedence(Attribute.of("attribute", String))
            then:
            thrown(UnsupportedOperationException)
    
            when:
            EmptySchema.INSTANCE.setAttributeDisambiguationPrecedence([Attribute.of("attribute", String)])
            then:
            thrown(UnsupportedOperationException)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/EmptySchema.java

        }
    
        @Override
        public void attributeDisambiguationPrecedence(Attribute<?>... attribute) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public void setAttributeDisambiguationPrecedence(List<Attribute<?>> attributes) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public List<Attribute<?>> getAttributeDisambiguationPrecedence() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top