Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for newClass (0.21 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JApiCmpExtensions.kt

            is JApiBehavior -> this.getjApiClass()
            else -> throw IllegalStateException("Unsupported japicmp member type '${this::class}'")
        }
    
    
    internal
    val JApiClass.isKotlin: Boolean
        get() = newClass.orNull()?.isKotlin ?: false
    
    
    internal
    val JApiClass.simpleName: String
        get() = fullyQualifiedName.substringAfterLast(".")
    
    
    internal
    val JApiClass.packagePath: String
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  2. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt

        private
        val JApiClass.kotlinSourceFilePath: String
            get() = "$packagePath/$bytecodeSourceFilename"
    
        private
        val JApiClass.bytecodeSourceFilename: String
            get() = newClass.orNull()?.classFile?.getAttribute("SourceFile")?.let { it as? SourceFileAttribute }?.fileName
                ?: throw java.lang.IllegalStateException("Bytecode for $fullyQualifiedName is missing the 'SourceFile' attribute")
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 3.8K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

    
    private
    val propertySetterNameRegex = "^set[A-Z].*$".toRegex()
    
    
    private
    val JApiCompatibility.newCtMember: CtClassOrCtMember
        get() = when (this) {
            is JApiClass -> newClass.get()
            is JApiConstructor -> newConstructor.get()
            is JApiField -> newFieldOptional.get()
            is JApiMethod -> newMethod.get()
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Dec 20 20:38:19 GMT 2023
    - 11.1K bytes
    - Viewed (0)
  4. api/go1.txt

    pkg syscall (linux-386), const RTM_NEWQDISC ideal-int
    pkg syscall (linux-386), const RTM_NEWROUTE ideal-int
    pkg syscall (linux-386), const RTM_NEWRULE ideal-int
    pkg syscall (linux-386), const RTM_NEWTCLASS ideal-int
    pkg syscall (linux-386), const RTM_NEWTFILTER ideal-int
    pkg syscall (linux-386), const RTM_NR_FAMILIES ideal-int
    pkg syscall (linux-386), const RTM_NR_MSGTYPES ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  5. api/go1.1.txt

    pkg syscall (linux-386), const RTM_NEWQDISC = 36
    pkg syscall (linux-386), const RTM_NEWROUTE = 24
    pkg syscall (linux-386), const RTM_NEWRULE = 32
    pkg syscall (linux-386), const RTM_NEWTCLASS = 40
    pkg syscall (linux-386), const RTM_NEWTFILTER = 44
    pkg syscall (linux-386), const RTM_NR_FAMILIES = 16
    pkg syscall (linux-386), const RTM_NR_MSGTYPES = 64
    pkg syscall (linux-386), const RTM_SETDCB = 79
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const RTM_NEWQDISC ideal-int
    pkg syscall (linux-arm-cgo), const RTM_NEWROUTE ideal-int
    pkg syscall (linux-arm-cgo), const RTM_NEWRULE ideal-int
    pkg syscall (linux-arm-cgo), const RTM_NEWTCLASS ideal-int
    pkg syscall (linux-arm-cgo), const RTM_NEWTFILTER ideal-int
    pkg syscall (linux-arm-cgo), const RTM_NR_FAMILIES ideal-int
    pkg syscall (linux-arm-cgo), const RTM_NR_MSGTYPES ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top