- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for openJarFile (0.04 sec)
-
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt
entry.isDirectory -> sourceNamesFromDir(entry) else -> emptySequence() } private fun sourceNamesFromJar(jar: File): Sequence<String> = openJarFile(jar).run { entries().asSequence() .filter { it.name.isClassFilePath } .map { kotlinSourceNameOf(it.name) } } private
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 6.3K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt
val DEFAULT_INCLUDES: List<String> = listOf( "org/gradle/fileevents" ) @Throws(IOException::class) private fun openJarFile(file: Path): ZipInputStream { return ZipInputStream(Files.newInputStream(file)) } } /** * Implementation code that can be unit-tested. * * <p>Visible for testing.</p>
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Apr 11 15:53:18 UTC 2025 - 7.1K bytes - Viewed (0)