Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NONE (0.12 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/AssembleDslDocTask.groovy

    @CacheableTask
    abstract class AssembleDslDocTask extends DefaultTask {
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        abstract RegularFileProperty getSourceFile();
    
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        abstract RegularFileProperty getClassMetaDataFile();
    
        @PathSensitive(PathSensitivity.NONE)
        @InputFile
        abstract RegularFileProperty getPluginsMetaDataFile();
    
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            channel = "flakiness-detection",
            extraParameters = "--checks none --rerun --cross-version-only"
        ),
        historical(
            displayName = "Historical Performance Test",
            timeout = 600,
            defaultBaselines = "last",
            channel = "historical",
            extraParameters = "--checks none --cross-version-only"
        ),
        adHoc(
            displayName = "AdHoc Performance Test",
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        parameters.repoRoot = repoRoot()
    }
    
    
    internal
    abstract class AgentsClasspathProvider : CommandLineArgumentProvider {
        @get:InputFiles
        @get:PathSensitive(PathSensitivity.NONE)
        abstract val agentsClasspath: ConfigurableFileCollection
    
        override fun asArguments() = agentsClasspath.files.map { "-javaagent:$it" }
    }
    
    
    internal
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Mon Feb 12 13:19:06 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

                // JUnit Platform `includeTags` works before Spock engine, thus excludes all spock tests.
                // As a workaround, we tag all non-spock integration tests and use `includeTags(none() | Flaky)` here.
                (options as JUnitPlatformOptions).includeTags("none() | org.gradle.test.fixtures.Flaky")
                includeSpockAnnotation("org.gradle.test.fixtures.Flaky")
            }
        }
    }
    
    fun Test.configureJvmForTest() {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  5. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

    
    private
    fun isCandidateForExtension(function: ApiFunction): Boolean = function.run {
        name !in functionNameBlackList &&
            isPublic &&
            !isStatic &&
            parameters.none { it.type.isGroovyClosure }
    }
    
    
    private
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
Back to top