Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 346 for Parker (0.22 sec)

  1. api/go1.4.txt

    # CL 158950043 database/sql: add Drivers, returning list of registered drivers, Russ Cox <******@****.***>
    pkg database/sql, func Drivers() []string
    
    # CL 117280043 debug/dwarf: fix Reader panic on DW_TAG_unspecified_type, Derek Parker <******@****.***>
    pkg debug/dwarf, method (*UnspecifiedType) Basic() *BasicType
    pkg debug/dwarf, method (*UnspecifiedType) Common() *CommonType
    pkg debug/dwarf, method (*UnspecifiedType) Size() int64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 12 03:01:01 GMT 2014
    - 34K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

        val rule = findMatchingRule(domainLabels)
        if (domainLabels.size == rule.size && rule[0][0] != EXCEPTION_MARKER) {
          return null // The domain is a public suffix.
        }
    
        val firstLabelOffset =
          if (rule[0][0] == EXCEPTION_MARKER) {
            // Exception rules hold the effective TLD plus one.
            domainLabels.size - rule.size
          } else {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/go-version/LICENSE

            rights in the Source Code Form under this License.
    
    3.3. Distribution of a Larger Work
    
         You may create and distribute a Larger Work under terms of Your choice,
         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/base/KtFe10AnnotatedSymbol.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.annotations.KtFe10AnnotationsList
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KtAnnotatedSymbol
    import org.jetbrains.kotlin.descriptors.annotations.Annotations
    
    internal interface KtFe10AnnotatedSymbol : KtAnnotatedSymbol, KtFe10Symbol {
        val annotationsObject: Annotations
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Jan 12 10:48:21 GMT 2023
    - 945 bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/fe10SymbolsEquality.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.base.KtFe10Symbol
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.getDescriptor
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KtNamedSymbol
    import org.jetbrains.kotlin.resolve.DescriptorEquivalenceForOverrides
    
    internal fun KtFe10Symbol.isEqualTo(other: Any?): Boolean {
        if (this === other) return true
        if (other !is KtFe10Symbol) return false
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Nov 11 10:59:57 GMT 2022
    - 1.1K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    message FlowSchemaSpec {
      // `priorityLevelConfiguration` should reference a PriorityLevelConfiguration in the cluster. If the reference cannot
      // be resolved, the FlowSchema will be ignored and marked as invalid in its status.
      // Required.
      optional PriorityLevelConfigurationReference priorityLevelConfiguration = 1;
    
      // `matchingPrecedence` is used to choose among the FlowSchemas that match a given request. The chosen
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.symbols.*
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolKind
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolWithKind
    import org.jetbrains.kotlin.analysis.project.structure.*
    import org.jetbrains.kotlin.descriptors.PropertyAccessorDescriptor
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 15:34:34 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/async-tests.md

    ```
    
    ## Es ausführen
    
    Sie können Ihre Tests wie gewohnt ausführen mit:
    
    <div class="termy">
    
    ```console
    $ pytest
    
    ---> 100%
    ```
    
    </div>
    
    ## Details
    
    Der Marker `@pytest.mark.anyio` teilt pytest mit, dass diese Testfunktion asynchron aufgerufen werden soll:
    
    ```Python hl_lines="7"
    {!../../../docs_src/async_tests/test_main.py!}
    ```
    
    !!! tip "Tipp"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:25:57 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE.md

    For urgent issues (e.g. production down, etc.), subscribe to [SUBNET](https://min.io/pricing?jmp=github) for direct to engineering support.
     
    <!--- Provide a general summary of the issue in the Title above -->
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Jan 29 00:04:16 GMT 2022
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10VisibilityChecker.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KtLifetimeToken
    import org.jetbrains.kotlin.analysis.api.symbols.KtFileSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KtSymbolWithVisibility
    import org.jetbrains.kotlin.descriptors.DeclarationDescriptorWithVisibility
    import org.jetbrains.kotlin.descriptors.DescriptorVisibilityUtils.isVisible
    import org.jetbrains.kotlin.descriptors.Visibilities
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Oct 27 06:22:37 GMT 2022
    - 4.3K bytes
    - Viewed (0)
Back to top