- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 10 for Final (0.01 sec)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationRule.java
import java.util.Map; public class SinceAnnotationRule extends AbstractGradleViolationRule { public static final String SINCE_ERROR_MESSAGE = "Is not annotated with @since "; public static final String SINCE_MISMATCH_ERROR_MESSAGE = "Has invalid @since: it should be %s, but currently is %s"; public static final String SINCE_INCONSISTENT_ERROR_MESSAGE = "Has inconsistent @since: %s";Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 3.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/BinaryBreakingChangesRule.java
import me.champeau.gradle.japicmp.report.Violation; import java.util.List; import java.util.Map; import java.util.Set; public class BinaryBreakingChangesRule extends AbstractGradleViolationRule { private static final List<JApiCompatibilityChangeType> IGNORED_CHANGE_TYPES = ImmutableList.of( JApiCompatibilityChangeType.METHOD_REMOVED_IN_SUPERCLASS, // the removal of the method will be reportedRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 3.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy
private final List<Pattern> publicApiPatterns AbstractSuperClassChangesRule(Map<String, Object> params) { super(params) final List<String> publicApiPatterns = (List<String>)params['publicApiPatterns']; this.publicApiPatterns = publicApiPatterns.collect { Pattern.compile(it) } } Violation maybeViolation(final JApiCompatibility member) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 2.2K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java
public class UpgradedProperties { private static final Pattern SETTER_REGEX = Pattern.compile("set[A-Z].*"); private static final Pattern GETTER_REGEX = Pattern.compile("get[A-Z].*"); private static final Pattern BOOLEAN_GETTER_REGEX = Pattern.compile("is[A-Z].*"); public static final String OLD_REMOVED_ACCESSORS_OF_UPGRADED_PROPERTIES = "oldRemovedAccessorsOfUpgradedProperties";Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 9.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedViolationsProvider.groovy
* limitations under the License. */ package gradlebuild.binarycompatibility import org.gradle.api.file.Directory class AcceptedViolationsProvider implements Serializable { private final File acceptedViolationsDir private Map<String, String> acceptedViolations = null AcceptedViolationsProvider(Directory acceptedViolationsDir) { this.acceptedViolationsDir = acceptedViolationsDir.asFile }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 1.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
@CompileStatic abstract class AbstractGradleViolationRule extends AbstractContextAwareViolationRule { private final Map<ApiChange, String> acceptedApiChanges private final File mainApiChangesJsonFile private final File projectRootDir AbstractGradleViolationRule(Map<String, Object> params) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 10.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
else -> "promoteMilestone" } fun promoteFinalReleaseTaskName(): String = when { isMaster -> throw UnsupportedOperationException("No final release job on master branch") isRelease -> "promoteFinalRelease" else -> "promoteFinalBackportRelease" } private fun nightlyTaskName(prefix: String): String = when {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 29 08:57:18 UTC 2025 - 2.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AcceptedRegressionsRuleSetup.java
import java.util.Collections; import java.util.HashSet; import java.util.Map; import java.util.Set; public class AcceptedRegressionsRuleSetup implements SetupRule { private final Set<ApiChange> acceptedApiChanges; public AcceptedRegressionsRuleSetup(Map<String, Object> params) { AcceptedViolationsProvider acceptedApiChanges = (AcceptedViolationsProvider) params.get("acceptedApiChanges");Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 1.9K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
* Artifacts matched by this map will be minified to only contain the specified * classes and the classes they depend on. The classes are not relocated, they all * remain in their original namespace. This reduces the final Gradle distribution * size and makes us more conscious of which parts of a library we really need. * * WARNING: if you decide to do the minification by hand, make sure that you cover all paths of loading classes:
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 25 16:18:05 UTC 2025 - 5.6K bytes - Viewed (0) -
scripts/translate.py
««« /// details | Vista previa »»» ### Tab blocks There are special blocks surrounded by four slashes («////»). They mark text, which will be rendered as part of a tab in the final document. The scheme is: //// tab | {tab title} {tab content, may span many lines} ////Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 19:05:53 UTC 2025 - 34.1K bytes - Viewed (0)