Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for apiTypeProviderFor (0.06 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 ->
    
            val extensionsPerTarget =
    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/codegen/ApiTypeProvider.kt

    import org.objectweb.asm.tree.AnnotationNode
    import org.objectweb.asm.tree.ClassNode
    import org.objectweb.asm.tree.MethodNode
    import java.io.Closeable
    import java.io.File
    import java.util.ArrayDeque
    
    
    fun apiTypeProviderFor(
        asmLevel: Int,
        platformClassLoader: ClassLoader,
        incubatingAnnotationTypeDescriptor: String,
        classPath: List<File>,
        classPathDependencies: List<File> = emptyList(),
    ): ApiTypeProvider =
    
    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