- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 131 for checkstyle (0.15 seconds)
-
CONTRIBUTING.md
- In the subsequent dialog navigate to the root `build.gradle` file - In the subsequent dialog select **Open as Project** #### Checkstyle If you have the [Checkstyle] plugin installed, you can configure IntelliJ to check the Elasticsearch code. However, the Checkstyle configuration file does not work by default with the IntelliJ plugin, so instead an IDE-specific config
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 07:32:01 GMT 2021 - 36.5K bytes - Click Count (0) -
build-tools-internal/src/main/resources/checkstyle_suppressions.xml
<?xml version="1.0"?> <!DOCTYPE suppressions PUBLIC "-//Puppy Crawl//DTD Suppressions 1.1//EN" "http://www.puppycrawl.com/dtds/suppressions_1_1.dtd"> <suppressions> <!-- On Windows, Checkstyle matches files using \ path separator --> <!-- These files are generated by ANTLR so its silly to hold them to our rules. -->Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 5.5K bytes - Click Count (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...
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 10K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/AcceptedApiChangesJsonFileManagerTest.groovy
""" { "acceptedApiChanges": [ { "type": "org.gradle.api.plugins.quality.Checkstyle", "member": "Method org.gradle.api.plugins.quality.Checkstyle.getInstantiator()", "changes": ["Method has been removed"], "acceptation": "use ObjectFactory instead" },Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Aug 17 08:32:56 GMT 2021 - 2.5K bytes - Click Count (0) -
build-tools-internal/src/integTest/java/org/elasticsearch/gradle/internal/ExportElasticsearchBuildResourcesTaskIT.java
assertBuildFileExists(result, PROJECT_NAME, "build-tools-exported/checkstyle_suppressions.xml"); result = getGradleRunner().withArguments("buildResources", "-s", "-i").build(); assertTaskUpToDate(result, ":buildResources"); assertBuildFileExists(result, PROJECT_NAME, "build-tools-exported/checkstyle.xml");
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.2K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/checkstyle/SnippetLengthCheck.java
* Side Public License, v 1. */ package org.elasticsearch.gradle.internal.checkstyle; import com.puppycrawl.tools.checkstyle.api.AbstractFileSetCheck; import com.puppycrawl.tools.checkstyle.api.CheckstyleException; import com.puppycrawl.tools.checkstyle.api.FileText; import java.io.File; import java.util.Arrays; import java.util.Iterator; import java.util.function.BiConsumer;
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jun 10 23:06:44 GMT 2021 - 3.1K bytes - Click Count (0) -
compat/maven-model/pom.xml
<artifactId>maven-model</artifactId> <name>Maven Model</name> <description>Model for Maven POM (Project Object Model)</description> <properties> <!-- in: ModelMerger --> <checkstyle.violation.ignore>FileLength</checkstyle.violation.ignore> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-model</artifactId> </dependency>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 7.1K bytes - Click Count (0) -
gradle/libs.versions.toml
bouncycastle-bctls = { module = "org.bouncycastle:bctls-jdk15to18", version.ref = "org-bouncycastle" } brotli-dec = { module = "org.brotli:dec", version.ref = "brotli-dec" } checkstyle = { module = "com.puppycrawl.tools:checkstyle", version.ref = "checkstyle" } clikt = { module = "com.github.ajalt.clikt:clikt", version.ref = "clikt" } codehaus-signature-java18 = { module = "org.codehaus.mojo.signature:java18", version.ref = "codehaus-signature-java18" }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 31 22:01:48 GMT 2026 - 12K bytes - Click Count (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-annotations</artifactId> </dependency>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 12.3K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/PreconditionsTest.java
verifyComplexMessage(expected); } public void testCheckState_simple_success() { checkState(true); } public void testCheckState_simple_failure() { assertThrows(IllegalStateException.class, () -> checkState(false)); } public void testCheckState_simpleMessage_success() { checkState(true, IGNORE_ME); } public void testCheckState_simpleMessage_failure() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 19.1K bytes - Click Count (0)