Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for asm (0.13 sec)

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

    import org.objectweb.asm.AnnotationVisitor
    import org.objectweb.asm.Attribute
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassReader.SKIP_CODE
    import org.objectweb.asm.ClassReader.SKIP_FRAMES
    import org.objectweb.asm.FieldVisitor
    import org.objectweb.asm.Opcodes.ACC_ABSTRACT
    import org.objectweb.asm.Opcodes.ACC_PUBLIC
    import org.objectweb.asm.Opcodes.ACC_STATIC
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  2. build-logic-commons/basics/build.gradle.kts

        api(platform(project(":build-platform")))
    
        implementation("com.google.guava:guava") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm-commons") {
            because("Used by class analysis")
        }
    
        implementation(kotlin("compiler-embeddable") as String) {
            because("Required by KotlinSourceParser")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Oct 01 12:13:59 GMT 2023
    - 981 bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val antLauncher = "org.apache.ant:ant-launcher"
        val antJunit = "org.apache.ant:ant-junit"
        val asm = "org.ow2.asm:asm"
        val asmAnalysis = "org.ow2.asm:asm-analysis"
        val asmCommons = "org.ow2.asm:asm-commons"
        val asmTree = "org.ow2.asm:asm-tree"
        val asmUtil = "org.ow2.asm:asm-util"
        val assertj = "org.assertj:assertj-core"
        val awsS3Core = "com.amazonaws:aws-java-sdk-core"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  4. build-logic/kotlin-dsl/build.gradle.kts

        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
        implementation(kotlin("gradle-plugin"))
        implementation(kotlin("sam-with-receiver"))
        implementation("org.ow2.asm:asm")
        implementation("com.thoughtworks.qdox:qdox")
    
        testImplementation("junit:junit")
        testImplementation("com.nhaarman:mockito-kotlin")
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sun Nov 12 16:16:08 GMT 2023
    - 737 bytes
    - Viewed (0)
  5. build-logic-commons/build-platform/build.gradle.kts

            api("org.junit.vintage:junit-vintage-engine:5.8.2")
            api("org.openmbee.junit:junit-xml-parser:1.0.0")
            api("org.ow2.asm:asm:$asmVersion")
            api("org.ow2.asm:asm-commons:$asmVersion")
            api("org.ow2.asm:asm-tree:$asmVersion")
            api("xerces:xercesImpl:2.12.2") {
                because("Maven Central and JCenter disagree on version 2.9.1 metadata")
            }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 22 05:34:03 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  6. build-logic/jvm/build.gradle.kts

        implementation("org.eclipse.jgit:org.eclipse.jgit")
        implementation("org.jsoup:jsoup")
        implementation("com.google.guava:guava")
        implementation("org.ow2.asm:asm")
        implementation("org.ow2.asm:asm-commons")
        implementation("com.google.code.gson:gson")
        implementation("com.gradle:gradle-enterprise-gradle-plugin")
    
        implementation("com.thoughtworks.qdox:qdox") {
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 782 bytes
    - Viewed (0)
  7. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/AnalyzeAndShade.kt

    import org.gradle.api.attributes.Attribute
    import org.gradle.api.internal.file.archive.ZipCopyAction.CONSTANT_TIME_FOR_ZIP_ENTRIES
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassWriter
    import org.objectweb.asm.commons.ClassRemapper
    import org.objectweb.asm.commons.Remapper
    import java.io.BufferedInputStream
    import java.io.File
    import java.io.FileInputStream
    import java.io.IOException
    import java.net.URI
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  8. build-logic/kotlin-dsl-shared-runtime/build.gradle.kts

    }
    
    description = "Provides Kotlin DSL code that is shared between build-logic and runtime"
    
    dependencies {
        compileOnly(platform("gradlebuild:build-platform"))
        compileOnly(kotlin("stdlib"))
        compileOnly("org.ow2.asm:asm-tree")
        compileOnly("com.google.code.findbugs:jsr305")
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 344 bytes
    - Viewed (0)
  9. LICENSE

    org.ow2.asm:asm
    org.ow2.asm:asm-analysis
    org.ow2.asm:asm-commons
    org.ow2.asm:asm-tree
    org.ow2.asm:asm-util
    ASM: a very small and fast Java bytecode manipulation framework
     Copyright (c) 2000-2011 INRIA, France Telecom
     All rights reserved.
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 23 11:07:23 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

    private
    fun interface ApiSpec {
        fun isApi(sourceName: String): Boolean
    }
    
    
    /**
     * Generate source file with Kotlin extensions enhancing the given api for the Gradle Kotlin DSL.
     *
     * @param asmLevel ASM level
     * @param outputDirectory the directory where the generated sources will be written
     * @param packageName the name of the package where the generated members will be added
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Wed Dec 20 21:41:53 GMT 2023
    - 18.1K bytes
    - Viewed (0)
Back to top