Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getCacheEntrySize (0.31 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/configurationcache/ConfigurationCacheBuildOperations.kt

    
    internal
    data class LoadResult(val stateFile: File, val originInvocationId: String? = null) : ConfigurationCacheLoadBuildOperationType.Result {
        override fun getCacheEntrySize(): Long = stateFile.length()
        override fun getOriginBuildInvocationId(): String? = originInvocationId
    }
    
    
    private
    object StoreDetails : ConfigurationCacheStoreBuildOperationType.Details
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:09:37 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/configurationcache/ConfigurationCacheStoreBuildOperationType.java

        }
    
        public interface Result {
            /**
             * The number of bytes of the loaded configuration cache entry.
             *
             * @since 8.6
             */
            long getCacheEntrySize();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 13:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/configurationcache/ConfigurationCacheLoadBuildOperationType.java

        }
    
        public interface Result {
            /**
             * The number of bytes of the stored configuration cache entry.
             *
             * @since 8.6
             */
            long getCacheEntrySize();
    
            /**
             * The ID of the build that store the configuration cache entry.
             *
             * `null` when unknown, e.g. when loading models and not a task graph.
             *
             * @since 8.6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 17:02:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top