Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 16 for spotless (0.06 seconds)

  1. build-tools-internal/src/main/groovy/elasticsearch.formatting.gradle

              trimTrailingWhitespace()
    
              // Sometimes Spotless will report a "misbehaving rule which can't make up its
              // mind" and will recommend enabling the `paddedCell()` setting. If you
              // enabled this setting and run the format check again,
              // Spotless will write files to
              // `$PROJECT/build/spotless-diagnose-java/` to aid diagnosis. It writes
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 9.1K bytes
    - Click Count (0)
  2. benchmarks/build.gradle

      jvmArgs << "-Dplugins.dir=${buildDir}/plugins" << "-Dtests.index=${buildDir}/index"
      dependsOn "copyExpression", "copyPainless"
    }
    
    spotless {
      java {
        // IDEs can sometimes run annotation processors that leave files in
        // here, causing Spotless to complain. Even though this path ought not
        // to exist, exclude it anyway in order to avoid spurious failures.
        targetExclude 'src/main/generated/**/*.java'
      }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  3. CONTRIBUTING.md

    [Checkstyle]: https://plugins.jetbrains.com/plugin/1065-checkstyle-idea
    [spotless]: https://github.com/diffplug/spotless
    [Eclipse Code Formatter]: https://plugins.jetbrains.com/plugin/6546-eclipse-code-formatter
    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)
  4. build-logic/build.gradle.kts

    plugins {
      `kotlin-dsl`
      id("com.diffplug.spotless") version "8.4.0"
    }
    
    configure<com.diffplug.gradle.spotless.SpotlessExtension> {
      kotlin {
        target("src/**/*.kt")
        ktlint()
      }
      kotlinGradle {
        target("*.kts")
        targetExclude("build/**/*.kts")
        ktlint()
      }
    }
    
    repositories {
      google()
      mavenCentral()
      gradlePluginPortal()
    }
    
    dependencies {
      implementation(libs.gradlePlugin.kotlin)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 18 18:05:02 GMT 2026
    - 1.1K bytes
    - Click Count (0)
  5. build-logic/src/main/kotlin/okhttp.quality-conventions.gradle.kts

    import ru.vyarus.gradle.plugin.animalsniffer.AnimalSniffer
    
    plugins {
      id("okhttp.base-conventions")
      id("checkstyle")
      id("ru.vyarus.animalsniffer")
      id("com.android.lint")
      id("com.diffplug.spotless")
    }
    
    val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
    
    fun library(alias: String) = libs.findLibrary(alias).get().get().let {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  6. gradle/libs.versions.toml

    mrjar = { id = "me.champeau.mrjar", version.ref = "mrjar" }
    shadow = { id = "com.gradleup.shadow", version.ref = "shadow-plugin" }
    spotless = { id = "com.diffplug.spotless", version.ref = "spotless-plugin" }
    jlink = { id = "com.github.iherasymenko.jlink", version.ref = "jlink" }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
  7. build.gradle.kts

    plugins {
      alias(libs.plugins.spotless) apply false
      alias(libs.plugins.android.library) apply false
      alias(libs.plugins.android.application) apply false
      alias(libs.plugins.kotlin.jvm) apply false
      alias(libs.plugins.kotlin.multiplatform) apply false
      alias(libs.plugins.kotlin.serialization) apply false
      alias(libs.plugins.dokka) apply false
      alias(libs.plugins.maven.publish) apply false
      alias(libs.plugins.binary.compatibility.validator) apply false
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 839 bytes
    - Click Count (1)
  8. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml

    Guillaume Nodet <******@****.***> 1729859506 +0200
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.8K bytes
    - Click Count (0)
  9. docs/iam/opa.md

    ## Get started
    
    ### 1. Start OPA in a container
    
    ```sh
    podman run -it \
        --name opa \
        --publish 8181:8181 \
        docker.io/openpolicyagent/opa:0.40.0-rootless \
           run --server \
               --log-format=json-pretty \
               --log-level=debug \
               --set=decision_logs.console=true
    ```
    
    ### 2. Create a sample OPA Policy
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Jul 17 15:43:14 GMT 2022
    - 2.3K bytes
    - Click Count (0)
  10. src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeTest.java

        }
    
        @Test
        public void testMultiplePipeNames() {
            // Test with various pipe names
            String[] pipeNames = { "\\\\pipe\\test", "\\\\pipe\\PIPE\\sql\\query", "\\\\pipe\\spoolss", "\\\\pipe\\winreg" };
    
            for (String pipeName : pipeNames) {
                TransWaitNamedPipe pipe = new TransWaitNamedPipe(pipeName);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 5.3K bytes
    - Click Count (0)
Back to Top