Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOperationsConcurrentWith (0.25 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativeParallelIntegrationTest.groovy

                    return record.displayName == "Task :${taskName}"
                }
            })
    
            assert task != null
            def concurrentTasks = buildOperations.getOperationsConcurrentWith(ExecuteTaskBuildOperationType, task)
            assert concurrentTasks.find { it.displayName == "Task :parallelTask" }
        }
    
        private void setupParallelTaskAndExpectations(String taskName) {
            server.start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

            }
            return highWaterPoint
        }
    
        /**
         * Return a list of operations (possibly empty) that executed concurrently with the given operation.
         */
        List<BuildOperationRecord> getOperationsConcurrentWith(Class<BuildOperationType> type, BuildOperationRecord operation) {
            def concurrentOperations = []
            all(type).each { candidate ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top