Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 188 for Heiber (0.17 sec)

  1. docs/de/docs/advanced/settings.md

    ```
    
    Und dann verwenden Sie diese in einer Datei `main.py`:
    
    ```Python hl_lines="3  11-13"
    {!../../../docs_src/settings/app01/main.py!}
    ```
    
    !!! tip "Tipp"
        Sie benötigen außerdem eine Datei `__init__.py`, wie in [Größere Anwendungen – mehrere Dateien](../tutorial/bigger-applications.md){.internal-link target=_blank} gesehen.
    
    ## Einstellungen in einer Abhängigkeit
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:17:14 GMT 2024
    - 17.8K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

      }
    
      /**
       * Returns a composite adapter for a struct or data class. This may be used for both SEQUENCE and
       * SET types.
       *
       * The fields are specified as a list of member adapters. When decoding, a value for each
       * non-optional member but be included in sequence.
       *
       * TODO: for sets, sort by tag when encoding.
       * TODO: for set ofs, sort by encoded value when encoding.
       */
      fun <T> sequence(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 15K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirErrors.RESERVED_MEMBER_INSIDE_VALUE_CLASS) { firDiagnostic ->
            ReservedMemberInsideValueClassImpl(
                firDiagnostic.a,
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.RESERVED_MEMBER_FROM_INTERFACE_INSIDE_VALUE_CLASS) { firDiagnostic ->
    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)
  4. docs/de/docs/history-design-future.md

    Dabei musste ich viele Alternativen untersuchen, testen und nutzen.
    
    Die Geschichte von **FastAPI** ist zu einem großen Teil die Geschichte seiner Vorgänger.
    
    Wie im Abschnitt [Alternativen](alternatives.md){.internal-link target=_blank} gesagt:
    
    <blockquote markdown="1">
    
    **FastAPI** würde ohne die frühere Arbeit anderer nicht existieren.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 18:10:48 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/JApiCmpExtensions.kt

        get() = when (this) {
            is JApiClass -> this
            is JApiField -> this.getjApiClass()
            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
    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)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirClassInitializerSymbol.kt

            TODO("Figure out how to create such a pointer. Should we give an index to class initializers?")
        }
    
        override val symbolKind: KtSymbolKind get() = withValidityAssertion { KtSymbolKind.CLASS_MEMBER }
    
        override val typeParameters: List<KtTypeParameterSymbol> get() = withValidityAssertion { emptyList() }
        override val annotationsList: KtAnnotationsList get() = withValidityAssertion { KtEmptyAnnotationsList(token) }
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Fri Feb 03 14:29:54 GMT 2023
    - 2.2K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/sequenceMap.dfprop

    # 
    # Example:
    # map:{
    #     ; PURCHASE     = SEQ_PURCHASE
    #     ; MEMBER       = SEQ_MEMBER
    #     ; MEMBER_LOGIN = SEQ_MEMBER_LOGIN
    #     ; PRODUCT      = SEQ_PRODUCT
    # }
    #
    # *The line that starts with '#' means comment-out.
    #
    map:{
        #; PURCHASE     = SEQ_PURCHASE
        #; MEMBER       = SEQ_MEMBER
        #; MEMBER_LOGIN = SEQ_MEMBER_LOGIN
        #; PRODUCT      = SEQ_PRODUCT
    }
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 717 bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirStarImportingScope.kt

                if (import.relativeClassName == null) { // top level callable
                    DeclarationsInPackageProvider.getTopLevelCallableNamesInPackageProvider(import.packageFqName, analysisSession)
                } else { //member
                    val classId = import.resolvedClassId ?: error("Class id should not be null as relativeClassName is not null")
                    firScope.getStaticsScope(classId)?.getCallableNames().orEmpty()
                }
            }
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Fri May 19 11:53:16 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/documentMap.dfprop

        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o aliasDelimiterInDbComment: (NotRequired - Default '')
        #  If the alias exists in its DB comment like as follows:
        #    member name : The name of member's full name
        #  you can use the alias in DBFlute world, java-doc, SchemaHTML...
        #  DB comment which does not have the delimiter is not treated
        #  as alias, treated as description (real comment).
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

                if (classifier is FirRegularClassSymbol && classifier.fir.isDeclared()) {
                    processor(classifier, substitutor)
                }
            }
        }
    
        override fun toString(): String = "Declared member scope for $delegate with owning class `${owner.classId}`"
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 2.7K bytes
    - Viewed (0)
Back to top