Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for compilationTrace (0.27 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.caching.fixtures
    
    import java.io.File
    
    
    internal
    fun compilationTrace(projectRoot: File, action: CompileTrace.() -> Unit) {
        val file = File(projectRoot, "operation-trace-log.txt")
        action(CompileTrace(file.readLines()))
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top