Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for normaliseFileSeparators (0.1 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

        private
        val KtFile.normalizedPath: String?
            get() = virtualFile.canonicalPath?.let { normaliseFileSeparators(it) }
    
        private
        val ApiSourceFile.normalizedPath: String
            get() = normaliseFileSeparators(currentFile.canonicalPath)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Apr 28 14:56:52 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

                            description = "Ensures the accepted api changes file is kept alphabetically ordered to make merging changes to it easier"
                            apiChangesDirectory = layout.projectDirectory.dir("${ TextUtil.normaliseFileSeparators(firstAcceptedApiChangesFile.parentFile.absolutePath) }")
                        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Nov 29 14:03:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt

            }
    
        private
        fun sourceNamesFromDir(dir: File): Sequence<String> =
            dir.walkTopDown()
                .filter { it.name.isClassFilePath }
                .map { kotlinSourceNameOf(normaliseFileSeparators(it.relativeTo(dir).path)) }
    
        private
        fun classBytesIndexFor(entry: Any): ClassBytesIndex =
            when (entry) {
                is File -> when {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top