Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ShaderCompile (0.91 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/Workarounds.kt

            }
    
        fun canAccessProjectAtExecutionTime(task: TaskInternal) =
            withWorkaroundsFor("task-project") {
                task.javaClass.name.run {
                    startsWith("com.android.build.gradle.tasks.ShaderCompile")
                        || startsWith("com.android.build.gradle.tasks.MapSourceSetPathsTask")
                        || startsWith("com.android.build.gradle.tasks.MergeResources")
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

    }
    
    
    private
    object Workarounds {
    
        private
        val ignoredBeanFields = arrayOf(
            // TODO:configuration-cache remove once fixed
            "ndkLocation" to "com.android.build.gradle.tasks.ShaderCompile"
        )
    
        fun isIgnoredBeanField(field: Field): Boolean {
            for (f in ignoredBeanFields) {
                if (field.name == f.first && field.declaringClass.name == f.second) {
                    return true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

                // See: https://android.googlesource.com/platform/tools/base/+/studio-master-dev/build-system/gradle-core/src/main/java/com/android/build/gradle/tasks/ShaderCompile.java#120
                // TODO: remove this once AGP stops checking for the existence of these directories at configuration time
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerSmokeTest.groovy

            // See: https://android.googlesource.com/platform/tools/base/+/studio-master-dev/build-system/gradle-core/src/main/java/com/android/build/gradle/tasks/ShaderCompile.java#120
            // TODO: remove this once AGP stops checking for the existence of these directories at configuration time
            checkoutDir.listFiles().findAll { isGradleProjectDir(it) }.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

        def setup() {
            AndroidHome.assertIsSet()
        }
    
        @Override
        SmokeTestGradleRunner runner(String... tasks) {
            def runner = super.runner(tasks)
            // TODO: AGP's ShaderCompile uses Task.project after the configuration barrier to compute inputs
            return runner.withJvmArguments(runner.jvmArguments + [
                // A workaround for this has been added to TaskExecutionAccessCheckers;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top