Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for classPathDependencies (0.08 sec)

  1. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionGeneratorFacade.kt

        classPath: List<File>,
        classPathDependencies: List<File>,
        apiSpec: java.util.function.Function<String, Boolean>,
        sinceSupplier: java.util.function.Function<String, String?>,
    ): List<File> =
    
        apiTypeProviderFor(
            asmLevel,
            platformClassLoader,
            incubatingAnnotationTypeDescriptor,
            classPath,
            classPathDependencies
        ).use { api ->
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Mar 12 15:56:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt

        classPathFiles: List<File>,
        classPathDependencies: List<File> = emptyList(),
    ) : Closeable {
    
        private
        val relevantClassPathFiles = classPathFiles.filter { it.isDirectory || (it.isFile && it.length() > 0) }
    
        private
        val openJars = mutableMapOf<File, JarFile>()
    
        private
        val classBytesIndex = (relevantClassPathFiles + classPathDependencies + platformClassLoader).map { classBytesIndexFor(it) }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        incubatingAnnotationTypeDescriptor: String,
        classPath: List<File>,
        classPathDependencies: List<File> = emptyList(),
    ): ApiTypeProvider =
    
        ApiTypeProvider(
            asmLevel,
            incubatingAnnotationTypeDescriptor,
            ClassBytesRepository(
                platformClassLoader,
                classPath,
                classPathDependencies,
            )
        )
    
    
    private
    typealias ApiTypeSupplier = () -> ApiType
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Mar 12 15:56:18 UTC 2025
    - 20.2K bytes
    - Viewed (0)
Back to top