Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getFailureDescribers (0.41 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributesSchemaInternal.java

         * @return The list of custom describers registered on this schema for the given failure type
         */
        <FAILURE extends ResolutionFailure> List<ResolutionFailureDescriber<FAILURE>> getFailureDescribers(Class<FAILURE> failureType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/EmptySchema.java

            throw new UnsupportedOperationException();
        }
    
        @Override
        public <FAILURE extends ResolutionFailure> List<ResolutionFailureDescriber<FAILURE>> getFailureDescribers(Class<FAILURE> failureType) {
            return Collections.emptyList();
        }
    
        private static class DoNothingCompatibilityRule implements CompatibilityRule<Object> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelectorSpec.groovy

        def attributeMatcher = Mock(AttributeMatcher)
        def attributesSchema = Mock(AttributesSchemaInternal) {
            withProducer(_) >> attributeMatcher
            getConsumerDescribers() >> []
            getFailureDescribers(_) >> []
        }
        def attributesFactory = AttributeTestUtil.attributesFactory()
        def requestedAttributes = AttributeTestUtil.attributes(['artifactType': 'jar'])
    
        def variant = Mock(ResolvedVariant) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top