Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            }
    
            packOp.result.archiveEntryCount == 5
            remoteStoreOp.details.archiveSize == packOp.result.archiveSize
    
            operations.orderedSerialSiblings(remoteMissLoadOp, packOp, remoteStoreOp)
    
            where:
            localStore | localEnabled | config
            true       | true         | "remote($remoteCacheClass) { push = true }"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeQueries.groovy

            while (operation != null) {
                action.execute(operation)
                search.addAll(operation.children)
                operation = search.poll()
            }
        }
    
        void orderedSerialSiblings(BuildOperationRecord... expectedOrder) {
            def expectedOrderList = expectedOrder.toList()
            assert expectedOrder*.parentId.unique().size() == 1
    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