Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for taskOperations (0.18 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ProgressEvents.groovy

        /**
         * Returns all tasks, in the order started.
         */
        List<Operation> getTasks() {
            assertHasZeroOrMoreTrees()
            def taskOperations = operations.findAll { it.task } as List
            taskOperations.forEach { it.assertIsTask() }
            return taskOperations
        }
    
        /**
         * Returns all successful operations, in the order started.
         */
        List<Operation> getSuccessful() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 13:50:05 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

        }
    
        def assertEmptyInputsTask(ProgressEvents.Operation taskOperation) {
            if (targetVersion < GradleVersion.version("3.4")) {
                assert taskOperation.result.upToDate
            } else {
                assert taskOperation.result instanceof TaskSkippedResult
                assert taskOperation.result.skipMessage == "NO-SOURCE"
            }
            true
        }
    
        def goodCode() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top