Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for substringBeforeLast (0.14 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                        .toList()
                )
            }
        }
    
        private
        fun taskPathToProjectPath(taskPath: String): String {
            return taskPath.substringBeforeLast(":").ifEmpty { ":" }
        }
    
        private class ReportLocation(provider: FileLocationProvider) {
            val file: File by lazy(LazyThreadSafetyMode.NONE) {
                provider.get().asFile
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  2. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

        private
        fun File.withUniqueDirectory(prefixPath: String): File =
            Files.createTempDirectory(
                withDirectory(prefixPath.substringBeforeLast("/")).toPath(),
                prefixPath.substringAfterLast("/")
            ).toFile()
    
        private
        fun File.withDirectory(path: String): File =
            resolve(path).apply {
                mkdirs()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 11:30:48 GMT 2026
    - 18.3K bytes
    - Click Count (0)
Back to Top