- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for checkStyle (0.15 sec)
-
.github/workflows/submit-github-dependency-graph.yml
DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: ':docs|:internal-performance-testing|:enterprise-plugin-performance|:performance|:internal-integ-testing'
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 933 bytes - Viewed (0) -
gradle/libs.versions.toml
bouncycastle-bctls = { module = "org.bouncycastle:bctls-jdk15to18", version.ref = "org-bouncycastle" } brotli-dec = "org.brotli:dec:0.1.2" checkStyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checkStyle" } clikt = "com.github.ajalt.clikt:clikt:4.4.0" codehaus-signature-java18 = "org.codehaus.mojo.signature:java18:1.0"
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Oct 28 11:53:44 UTC 2024 - 7.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/SanityCheck.kt
class SanityCheck(model: CIBuildModel, stage: Stage) : OsAwareBaseGradleBuildType(os = Os.LINUX, stage = stage, init = { id(buildTypeId(model)) name = "Sanity Check" description = "Static code analysis, checkstyle, release notes verification, etc." features { publishBuildStatusToGithub(model) } applyDefaults( model, this, "sanityCheck",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 905 bytes - Viewed (0) -
compat/maven-model-builder/pom.xml
<description>The effective model builder, with inheritance, profile activation, interpolation, ...</description> <properties> <!-- in: DefaultModelValidator, DefaultModelBuilder --> <checkstyle.violation.ignore>FileLength</checkstyle.violation.ignore> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-core</artifactId> </dependency> <dependency>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.4K bytes - Viewed (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
plugin, so following best practices is relatively straightforward. For core plugins in gradle/gradle, it's easy for an object to be created without applying its associated plugin. For instance, Spring has a plugin that uses the Checkstyle task directly without applying the Checkstyle plugin. Until we can provide the same guarantees for core plugins, we need to be more conservative for existing classes and not follow best practices. This means conventions need to be set in both a plugin and the...
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 20:00:57 UTC 2024 - 10K bytes - Viewed (0) -
internal/hash/checksum.go
} } return t, s } checkType := func(c ChecksumType) { if got := h.Get(c.Key()); got != "" { // If already set, invalid if t != ChecksumNone { t = ChecksumInvalid s = "" } else { t = c s = got } return } } checkType(ChecksumCRC32) checkType(ChecksumCRC32C) checkType(ChecksumSHA1) checkType(ChecksumSHA256) return t, s
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 19 12:59:07 UTC 2024 - 12.7K bytes - Viewed (0)