- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for openJarFile (0.05 seconds)
-
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
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 6.3K bytes - Click Count (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>
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 15:53:18 GMT 2025 - 7.1K bytes - Click Count (0)