Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 395 for Boolean (0.19 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescNamedClassOrObjectSymbol.kt

        override val isInner: Boolean
            get() = withValidityAssertion { descriptor.isInner }
    
        override val isData: Boolean
            get() = withValidityAssertion { descriptor.isData }
    
        override val isInline: Boolean
            get() = withValidityAssertion { descriptor.isInline || descriptor.isValue }
    
        override val isFun: Boolean
            get() = withValidityAssertion { descriptor.isFun }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

        val isPublic: Boolean
            get() = delegate.access.isPublic
    
        internal
        val isDeprecated: Boolean
            get() = delegate.visibleAnnotations.has<java.lang.Deprecated>()
    
        internal
        val isIncubating: Boolean
            get() = delegate.visibleAnnotations.has(incubatingAnnotationTypeDescriptor)
    
        val isSAM: Boolean 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)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbol.kt

            get() = withValidityAssertion { descriptor.name }
    
        override val isFromPrimaryConstructor: Boolean
            get() = withValidityAssertion { descriptor.containingDeclaration is ConstructorDescriptor }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { descriptor.isExplicitOverride }
    
        override val isStatic: Boolean
            get() = withValidityAssertion { DescriptorUtils.isStaticDeclaration(descriptor) }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 4.7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescDefaultPropertyGetterSymbol.kt

    ) : KtPropertyGetterSymbol(), KtFe10Symbol {
        override val isDefault: Boolean
            get() = withValidityAssertion { true }
    
        override val isInline: Boolean
            get() = withValidityAssertion { false }
    
        override val isOverride: Boolean
            get() = withValidityAssertion { propertyDescriptor.isExplicitOverride }
    
        override val hasBody: Boolean
            get() = withValidityAssertion { false }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescValueParameterSymbol.kt

                }
            }
    
        override val hasDefaultValue: Boolean
            get() = withValidityAssertion { descriptor.hasDefaultValue() }
    
        override val isVararg: Boolean
            get() = withValidityAssertion { descriptor.isVararg }
    
        override val isCrossinline: Boolean
            get() = withValidityAssertion { descriptor.isCrossinline }
    
        override val isNoinline: Boolean
            get() = withValidityAssertion { descriptor.isNoinline }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

      private var port = 0
      private val executor = Executors.newSingleThreadExecutor(threadFactory("MockHttp2Peer"))
      private var serverSocket: ServerSocket? = null
      private var socket: Socket? = null
    
      fun setClient(client: Boolean) {
        if (this.client == client) return
        this.client = client
        writer = Http2Writer(bytesOut, client)
      }
    
      fun acceptFrame() {
        frameCount++
      }
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirSimpleNameReference.kt

    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.psi.*
    
    internal class KtFirSimpleNameReference(
        expression: KtSimpleNameExpression,
        val isRead: Boolean,
    ) : KtSimpleNameReference(expression), KtFirReference {
    
        private val isAnnotationCall: Boolean
            get() {
                val ktUserType = expression.parent as? KtUserType ?: return false
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 02 21:23:43 GMT 2023
    - 5K bytes
    - Viewed (0)
  8. okcurl/src/main/kotlin/okhttp3/curl/Main.kt

      ).int().default(DEFAULT_TIMEOUT)
    
      val followRedirects: Boolean by option("-L", "--location", help = "Follow redirects").flag()
    
      val allowInsecure: Boolean by option("-k", "--insecure", help = "Allow connections to SSL sites without certs").flag()
    
      val showHeaders: Boolean by option("-i", "--include", help = "Include protocol headers in the output").flag()
    
      val showHttp2Frames: Boolean by option("--frames", help = "Log HTTP/2 frames to STDERR").flag()
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 5.7K bytes
    - Viewed (1)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

        }
    
        override fun getDirectSuperTypes(type: KtType, shouldApproximate: Boolean): List<KtType> {
            require(type is KtFirType)
            return type.coneType.getDirectSuperTypes(shouldApproximate).mapTo(mutableListOf()) { it.asKtType() }
        }
    
        private fun ConeKotlinType.getDirectSuperTypes(shouldApproximate: Boolean): Sequence<ConeKotlinType> {
            return when (this) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Feb 20 08:50:04 GMT 2024
    - 16.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescJavaFieldSymbol.kt

        override val name: Name
            get() = withValidityAssertion { descriptor.name }
    
        override val isStatic: Boolean
            get() = withValidityAssertion { DescriptorUtils.isStaticDeclaration(descriptor) }
    
        override val isVal: Boolean
            get() = withValidityAssertion { !descriptor.isVar }
    
        override val callableIdIfNonLocal: CallableId?
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 2.5K bytes
    - Viewed (0)
Back to top