- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for isNotable (0.11 seconds)
-
build-tools-internal/src/main/resources/templates/breaking-changes.asciidoc
enable <<deprecation-logging, deprecation logging>>. <% [true, false].each { isNotable -> def breakingChangesByArea = breakingChangesByNotabilityByArea.getOrDefault(isNotable, []) breakingChangesByArea.eachWithIndex { area, breakingChanges, i -> print "\n" if (isNotable) { print "// tag::notable-breaking-changes[]\n" } print "[discrete]\n"
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jul 28 11:09:58 GMT 2021 - 2.9K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ChangelogEntry.java
deprecation ); } public static class Highlight { private boolean notable; private String title; private String body; public boolean isNotable() { return notable; } public void setNotable(boolean notable) { this.notable = notable; } public String getTitle() {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 9.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseHighlightsGenerator.java
.map(ChangelogEntry::getHighlight) .filter(Objects::nonNull) .collect(Collectors.groupingBy(ChangelogEntry.Highlight::isNotable, Collectors.toList())); final List<ChangelogEntry.Highlight> notableHighlights = groupedHighlights.getOrDefault(true, List.of());
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 14:45:41 GMT 2021 - 2.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/BreakingChangesGenerator.java
.filter(Objects::nonNull) .sorted(comparing(ChangelogEntry.Breaking::getTitle)) .collect( groupingBy( ChangelogEntry.Breaking::isNotable, groupingBy(ChangelogEntry.Breaking::getArea, TreeMap::new, Collectors.toList()) ) );
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 14:45:41 GMT 2021 - 3K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt
} val gradleMajor = VersionNumber.version(currentGradleVersion.majorVersion) val minimumFallback = when { allMinorLatests.any { it.major >= gradleMajor.major && it.isStable } -> { validateMinimumSupported(minimumSupported, gradleMajor) gradleMajor } else -> {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Oct 24 09:10:29 GMT 2025 - 7.6K bytes - Click Count (0)