Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for UnusedPrivateProperty (0.07 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

                "${prefix}TestRuntimeOnly"(project(":instrumentation-agent"))
                "${prefix}TestAgentsClasspath"(project(":instrumentation-agent"))
            }
        }
    }
    
    
    @Suppress("UnusedPrivateProperty")
    internal
    fun Project.createGenerateAutoTestedSamplesTestTask(sourceSet: SourceSet, testType: TestType) {
        val prefix = testType.prefix
        val sourceSets = the<SourceSetContainer>()
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 16:39:23 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        })
    }
    
    fun configureSourcesVariant() {
        java {
            withSourcesJar()
        }
    
        // TODO: This should not be necessary anymore now that we have variant reselection.
        @Suppress("UnusedPrivateProperty")
        val transitiveSourcesElements by configurations.creating {
            isCanBeResolved = false
            isCanBeConsumed = true
            extendsFrom(configurations.implementation.get())
            attributes {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Dec 19 06:44:41 UTC 2025
    - 18.9K bytes
    - Viewed (0)
Back to top