Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hussam (0.15 sec)

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

            get() = delegate.visibleAnnotations.has<java.lang.Deprecated>()
    
        internal
        val isIncubating: Boolean
            get() = delegate.visibleAnnotations.has(incubatingAnnotationTypeDescriptor)
    
        val isSAM: Boolean by unsafeLazy {
            delegate.access.isAbstract && singleAbstractMethodOf(delegate)?.access?.isPublic == true
        }
    
        val typeParameters: List<ApiTypeUsage> by unsafeLazy {
    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/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionsGenerator.kt

        const val kotlinClass = "kotlin.reflect.KClass"
        const val kotlinArray = "kotlin.Array"
        const val kotlinCollection = "kotlin.collections.Collection"
    }
    
    
    private
    val ApiTypeUsage.isSAM
        get() = type?.isSAM == true
    
    
    private
    val ApiTypeUsage.isAny
        get() = sourceName == "Any"
    
    
    private
    val ApiTypeUsage.isString
        get() = sourceName == "String"
    
    
    private
    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