Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for kinase (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            val candidates: List<KtSymbol>
        }
    
        interface AmbiguousFunctionTypeKind : KtFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = AmbiguousFunctionTypeKind::class
            val kinds: List<FunctionTypeKind>
        }
    
        interface NoContextReceiver : KtFirDiagnostic<KtElement> {
            override val diagnosticClass get() = NoContextReceiver::class
            val contextReceiverRepresentation: KtType
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.NextAmbiguity
    
    internal class AmbiguousFunctionTypeKindImpl(
        override val kinds: List<FunctionTypeKind>,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.AmbiguousFunctionTypeKind
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

                  /*
                   * In guava-jre, any kind of Exception may be thrown because `closeable` has type
                   * `AutoCloseable`.
                   *
                   * In guava-android, the only kinds of Exception that may be thrown are
                   * RuntimeException and IOException because `closeable` has type `Closeable`—except
                   * that we have to account for sneaky checked exception.
                   */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

            MixingSuspendAndNonSuspendSupertypesImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.MIXING_FUNCTIONAL_KINDS_IN_SUPERTYPES) { firDiagnostic ->
            MixingFunctionalKindsInSupertypesImpl(
                firDiagnostic.a.map { functionTypeKind ->
                    functionTypeKind
                },
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    same kind; that is, a boolean, integer, floating-point, complex, or string
    constant.
    If the untyped operands of a binary operation (other than a shift) are of
    different kinds, the result is of the operand's kind that appears later in this
    list: integer, rune, floating-point, complex.
    For example, an untyped integer constant divided by an
    untyped complex constant yields an untyped complex constant.
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
Back to top