Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for unsupportedModel (0.13 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/CancellableModelBuilderBackedModelProducer.java

        }
    
        @Override
        public <T> T produceModel(Class<T> type, ConsumerOperationParameters operationParameters) {
            if (!versionDetails.maySupportModel(type)) {
                throw Exceptions.unsupportedModel(type, versionDetails.getVersion());
            }
            final ModelIdentifier modelIdentifier = modelMapping.getModelIdentifierFromModelType(type);
            BuildResult<?> result;
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/internal/Exceptions.java

                    + "\nAlternatively, you can ignore this exception and read other information from the model.",
                method);
        }
    
        public static UnknownModelException unsupportedModel(Class<?> modelType, String targetVersion) {
            ModelMapping modelMapping = new ModelMapping();
            String versionAdded = modelMapping.getVersionAdded(modelType);
            if (versionAdded != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top