Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for isLegacy (0.13 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/model/ReportConfiguration.java

        public boolean isPurelyConsumable() {
            return Type.CONSUMABLE == type;
        }
    
        public boolean isPurelyResolvable() {
            return Type.RESOLVABLE == type;
        }
    
        public boolean isLegacy() {
            return Type.LEGACY == type;
        }
    
        public boolean hasIncubatingAttributes() {
            return attributes.stream().anyMatch(ReportAttribute::isIncubating);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 12 17:16:59 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectComponentPublication.java

         * be considered when converting project dependencies to published metadata.
         */
        boolean isAlias();
    
        /**
         * Should this publication be ignored when there are others available?
         */
        boolean isLegacy();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/swiftpm/internal/NativeProjectPublication.java

            return Providers.notDefined();
        }
    
        @Override
        public boolean isAlias() {
            return false;
        }
    
        @Override
        public boolean isLegacy() {
            return false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top