Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getOnlyLocalStoreOperationForTask (0.52 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildCacheOperationFixtures.groovy

        List<BuildOperationRecord> getLocalStoreOperationsForTask(String taskPath) {
            return getOperationsForTask(taskPath, BuildCacheLocalStoreBuildOperationType.Details)
        }
    
        BuildOperationRecord getOnlyLocalStoreOperationForTask(String taskPath) {
            return getOnlyOperationForTask(taskPath, BuildCacheLocalStoreBuildOperationType.Details)
        }
    
        List<BuildOperationRecord> getUnpackOperationsForTask(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)
  2. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            def localMissLoadOp = cacheOperations.getOnlyLocalLoadOperationForTask(":t")
            def packOp = cacheOperations.getOnlyPackOperationForTask(":t")
            def storeOp = cacheOperations.getOnlyLocalStoreOperationForTask(":t")
    
            def cacheKey = localMissLoadOp.details.cacheKey
            cacheKey != null
            def archiveSize = localCache.getCacheEntry(cacheKey.toString()).bytes.length
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top