Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 176 for excluded (0.25 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            configuration.exclude(excludeProperties("ant", "ant"));
            configuration.exclude(excludeProperties("org.apache.ant", "ant"));
            configuration.exclude(excludeProperties("org.apache.ant", "ant-launcher"));
            configuration.exclude(excludeProperties("org.slf4j", "slf4j-api"));
            configuration.exclude(excludeProperties("org.slf4j", "jcl-over-slf4j"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/jvm/scala/build.gradle.kts

                exclude("org.scala-sbt:compiler-interface")
                exclude("org.scala-sbt:util-interface")
                exclude("org.scala-sbt:zinc-classpath_2.13")
                exclude("org.scala-lang:scala-library")
                exclude("org.scala-sbt:io_2.13")
                exclude("org.scala-sbt:util-logging_2.13")
                exclude("org.scala-sbt:util-relation_2.13")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. tests/integration/iop-ambient-test-defaults.yaml

            proxyMetadata:
              ISTIO_META_DNS_CAPTURE: "true"
              DNS_PROXY_ADDR: "0.0.0.0:15053"
          accessLogFile: /dev/stdout
          # Just used to exclude for testing
          discoverySelectors:
          - matchExpressions:
            - key: istio.io/test-exclude-namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  4. testing/architecture-test/build.gradle.kts

            inputs.dir(ruleStoreDir)
    
            systemProperty("org.gradle.public.api.includes", (PublicApi.includes + PublicKotlinDslApi.includes).joinToString(":"))
            systemProperty("org.gradle.public.api.excludes", (PublicApi.excludes + PublicKotlinDslApi.excludes).joinToString(":"))
            jvmArgumentProviders.add(
                ArchUnitFreezeConfiguration(
                    ruleStoreDir.asFile,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/build.gradle.kts

    }
    
    
    dependencyAnalysis {
        issues {
            onUnusedDependencies() {
                // This need to exist to be loaded reflectively
                exclude(libs.awsS3Kms)
                exclude(libs.awsS3Sts)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/version-control/build.gradle.kts

        implementation(project(":functional"))
        implementation(project(":hashing"))
        implementation(project(":logging-api"))
    
        implementation(libs.guava)
        implementation(libs.jgitSsh) {
            exclude("org.apache.sshd", "sshd-osgi") // Because it duplicates sshd-core and sshd-commons contents
        }
    
        testImplementation(project(":native"))
        testImplementation(project(":snapshots"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

    import java.util.regex.Pattern
    
    
    /**
     * This is the definition of what constitutes the Gradle public API.
     *
     * A type is part of the Gradle public API if and only if its FQCN matches {@link #includes} and does not match {@link #excludes}.
     */
    // NOTE: If you update this, please also change .idea/scopes/Gradle_public_API.xml
    // and also change `avoiding_gradle_internal_apis` section in `src/docs/userguide/authoring-builds/authoring_maintainable_build_scripts.adoc`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ExcludeRuleMergingPerformanceTest.groovy

    )
    class ExcludeRuleMergingPerformanceTest extends AbstractCrossVersionPerformanceTest implements WithExternalRepository {
    
        def setup() {
            runner.minimumBaseVersion = '5.6.4'
        }
    
        def "merge exclude rules"() {
            startServer()
    
            given:
            runner.tasksToRun = ['resolveDependencies']
            runner.args = ['-PuseHttp', "-PhttpPort=${serverPort}", "-Dorg.gradle.parallel=false"]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. common/config/.golangci-format.yml

    issues:
      # Which dirs to exclude: issues from them won't be reported.
      # Can use regexp here: `generated.*`, regexp is applied on full path,
      # including the path prefix if one is set.
      # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default).
      # "/" will be replaced by current OS file path separator to properly work on Windows.
      # Default: []
      exclude-dirs:
        - genfiles$
        - vendor$
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 03:02:37 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcTaskExecutionIntegrationTest.groovy

            run(":nested:buildSrc:jar")
            result.assertTaskExecuted(":nested:buildSrc:jar")
    
            run(":nested:buildSrc:jar")
            // Task will not run when configuration cache is enabled
        }
    
        def "can exclude a task from buildSrc from the command line"() {
            file("buildSrc/build.gradle") << """
                task something {
                    doLast { }
                }
                task thing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top