Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ProjectFingerprint (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDebugLogIntegrationTest.groovy

            events.contains([profile: "build fingerprint", type: "C", "frame": GradleEnvironment.name])
            events.contains([profile: "project fingerprint", type: "O", "frame": ProjectFingerprint.name])
            events.contains([profile: "project fingerprint", type: "C", "frame": ProjectFingerprint.name])
    
            and: "Gradle and Work Graph events are logged"
            events.contains([profile: "build ':' state", type: "O", frame: "Gradle"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ProjectSpecificFingerprint.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.fingerprint
    
    import org.gradle.util.Path
    
    
    internal
    sealed class ProjectSpecificFingerprint {
        data class ProjectFingerprint(
            val projectPath: Path,
            val value: ConfigurationCacheFingerprint
        ) : ProjectSpecificFingerprint()
    
        data class ProjectDependency(
            val consumingProject: Path,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top