Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for nonConsumableConfigurationFailure (0.73 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

            return describeFailure(failure);
        }
    
        public AbstractResolutionFailureException nonConsumableConfigurationFailure(
            String configurationName,
            ComponentIdentifier componentId
        ) {
            // We hard-code the exception here since we do not currently support dynamically describing this type of failure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultLocalComponentGraphResolveState.java

                // all consumable configurations.
                assert !conf.getMetadata().isCanBeConsumed() : "Expected configuration to be non-consumable";
    
                throw failureHandler.nonConsumableConfigurationFailure(name, component.getId());
            }
    
            @Override
            public List<VariantGraphResolveState> getAllSelectableVariants() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:25:36 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top