Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buildForCacheInspection (0.14 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                    classLoadingCache {
                        hits(leftBuildFile, rootBuildFile, rightBuildFile)
                    }
                }
    
                // when: other daemon
                buildForCacheInspection("--stop")
                buildForCacheInspection("help").apply {
    
                    // then: single class loading only
                    compilationCache {
                        hits(leftBuildFile, rootBuildFile, rightBuildFile)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/AbstractScriptCachingIntegrationTest.kt

                requireDaemon()
                requireIsolatedDaemons()
            }
        }
    
        @After
        fun stopDaemons() {
            build("--stop")
        }
    
        protected
        fun buildForCacheInspection(vararg arguments: String): ExecutionResult =
            executerForCacheInspection(*arguments).run()
    
        protected
        fun buildWithDaemonHeapSize(heapMb: Int, vararg arguments: String): ExecutionResult =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top