Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOnlyLocalLoadOperationForTask (0.33 sec)

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

            then:
            operations.none(BuildCacheRemoteLoadBuildOperationType)
            operations.none(BuildCacheRemoteStoreBuildOperationType)
            def localMissLoadOp = cacheOperations.getOnlyLocalLoadOperationForTask(":t")
            def packOp = cacheOperations.getOnlyPackOperationForTask(":t")
            def storeOp = cacheOperations.getOnlyLocalStoreOperationForTask(":t")
    
            def cacheKey = localMissLoadOp.details.cacheKey
    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/BuildCacheOperationFixtures.groovy

        List<BuildOperationRecord> getLocalLoadOperationsForTask(String taskPath) {
            return getOperationsForTask(taskPath, BuildCacheLocalLoadBuildOperationType.Details)
        }
    
        BuildOperationRecord getOnlyLocalLoadOperationForTask(String taskPath) {
            return getOnlyOperationForTask(taskPath, BuildCacheLocalLoadBuildOperationType.Details)
        }
    
        List<BuildOperationRecord> getLocalStoreOperationsForTask(String taskPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top