Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for toolchainEvents (0.28 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            """
    
            when:
            withInstallations(jdkMetadata).run(task)
            def events = toolchainEvents(task)
            then:
            executedAndNotSkipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
            when:
            withInstallations(jdkMetadata).run(task)
            events = toolchainEvents(task)
            then:
            skipped(task)
            assertToolchainUsages(events, jdkMetadata, tool)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/UpToDateScalaCompileIntegrationTest.groovy

            withInstallations(jdkMetadata).run ":compileScala"
            def events = toolchainEvents(":compileScala")
    
            then:
            executedAndNotSkipped ":compileScala"
            assertToolchainUsages(events, jdkMetadata, "JavaLauncher")
    
            when:
            withInstallations(jdkMetadata).run ":compileScala"
            events = toolchainEvents(":compileScala")
    
            then:
            skipped ":compileScala"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainBuildOperationsFixture.groovy

            events.findAll { it.details.toolchain.javaVersion == jdkMetadata.javaVersion }
        }
    
        List<BuildOperationRecord.Progress> toolchainEvents(String taskPath) {
            ensureInitialized()
            return progressEventsFor(
                operations, JavaToolchainUsageProgressDetails, taskPath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top