Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for fingerprint (0.3 sec)

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

            configurationCacheRun 'ok'
    
            then: "fingerprint frame events are logged"
            def events = collectOutputEvents()
            events.contains([profile: "build fingerprint", type: "O", "frame": GradleEnvironment.name])
            events.contains([profile: "build fingerprint", type: "C", "frame": GradleEnvironment.name])
            events.contains([profile: "project fingerprint", type: "O", "frame": ProjectFingerprint.name])
    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/IgnoredConfigurationInputs.kt

    import java.io.File
    
    
    /**
     * Defines specific configuration inputs that should not be included in the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    interface IgnoredConfigurationInputs {
        /**
         * Checks if the [file] should be excluded from the configuration inputs fingerprint if it participates
         * in file system checks, such as [File.exists], [File.isFile] etc.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprint.kt

             * The file system paths that will be ignored during file system checks tracking for the cache fingerprint.
             * @see org.gradle.internal.cc.impl.DefaultIgnoredConfigurationInputs
             */
            val ignoredFileSystemCheckInputPaths: String?
        ) : ConfigurationCacheFingerprint()
    
        data class InitScripts(
            val fingerprints: List<InputFile>
        ) : ConfigurationCacheFingerprint()
    
        data class WorkInputs(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.util.Path
    
    
    sealed class CheckedFingerprint {
        // No fingerprint, which means no cache entry
        object NotFound : CheckedFingerprint()
    
        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ProjectSpecificFingerprint.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * 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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheAwareProjectEvaluator.kt

    import org.gradle.api.internal.project.ProjectInternal
    import org.gradle.api.internal.project.ProjectStateInternal
    import org.gradle.configuration.project.ProjectEvaluator
    import org.gradle.internal.cc.impl.fingerprint.ConfigurationCacheFingerprintController
    
    
    internal
    class ConfigurationCacheAwareProjectEvaluator(
        private val delegate: ProjectEvaluator,
        private val controller: ConfigurationCacheFingerprintController
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ScopedFingerprintWriter.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.fingerprint
    
    import org.gradle.internal.configuration.problems.PropertyTrace
    import org.gradle.internal.serialize.graph.DefaultWriteContext
    import org.gradle.internal.serialize.graph.runWriteOperation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCleanupIntegrationTest.groovy

        }
    
        private TestFile createCacheEntryDir(String entry) {
            TestFile dir = cacheDir.createDir(entry)
            dir.createFile("state.bin")
            dir.createFile("fingerprint.bin")
            return dir
        }
    
        private TestFile getGcFile() {
            return cacheDir.file("gc.properties")
        }
    
        private TestFile getCacheDir() {
            return file(".gradle/configuration-cache")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIgnoringIntegrationTest.groovy

                withInput("Build file 'build.gradle': file system entry 'file3.txt'")
            }
        }
    
        def 'paths ignored in file system checks are included in the configuration cache fingerprint'() {
            when:
            configurationCacheRun()
            configurationCacheRun("-D$IGNORE_FS_CHECKS_PROPERTY=test")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

     * For example, accessing environment variable inside the `ValueSource` being obtained at
     * the configuration time is not really an input, because the value of the value source itself
     * becomes part of the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    class InputTrackingState {
        private
        var inputTrackingDisabledCounterForThread by ThreadLocal.withInitial { 0 }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top