Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for directoryChildrenNamesHash (0.15 sec)

  1. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            else -> FileType.RegularFile
        }
    
    
    // This value is returned from directoryChildrenNamesHash when its argument doesn't exist or is not a directory.
    private
    val NON_DIRECTORY_CHILDREN_NAMES_HASH = HashCode.fromBytes(byteArrayOf(0, 0, 0, 0))
    
    
    fun directoryChildrenNamesHash(file: File): HashCode {
        return file.list()?.let { entries ->
            val hasher = Hashing.newHasher()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

    import org.gradle.internal.execution.WorkInputListeners
    import org.gradle.internal.execution.impl.DefaultFileNormalizationSpec
    import org.gradle.internal.execution.model.InputNormalizer
    import org.gradle.internal.extensions.core.directoryChildrenNamesHash
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    import org.gradle.internal.file.FileType
    import org.gradle.internal.fingerprint.DirectorySensitivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top