Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for Parent (0.74 sec)

  1. src/cmd/go/testdata/script/env_issue46807.txt

    ! go mod tidy
    stderr '^go: warning: ignoring go.mod in \$GOPATH'
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules'''
    
    go env
    stdout 'GOPATH='
    stderr '^go: warning: ignoring go.mod in \$GOPATH'
    
    -- $GOPATH/go.mod --
    module bug
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:56:44 UTC 2023
    - 288 bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10JvmTypeMapperContext.kt

            return when (val parent = descriptor.containingDeclaration) {
                is PackageFragmentDescriptor -> {
                    val packageInternalName = parent.fqName.asString().replace('.', '/')
                    "$packageInternalName/$selfName"
                }
                is ClassDescriptor -> {
                    val parentInternalName = computeClassInternalName(parent)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirKDocReference.kt

    internal class KaFirKDocReference(element: KDocName) : KDocReference(element), KaFirReference {
        override fun KaSession.resolveToSymbols(): Collection<KaSymbol> {
            val fullFqName = generateSequence(element) { it.parent as? KDocName }.last().getQualifiedNameAsFqName()
            val selectedFqName = element.getQualifiedNameAsFqName()
            return KDocReferenceResolver.resolveKdocFqName(analysisSession, selectedFqName, fullFqName, element)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

                    }
    
                    val parent = owner.parent
                    if (parent is IrFunction) {
                        if (parent.dispatchReceiverParameter == owner) {
                            return CodeFragmentCapturedValue.ContainingClass(receiverClassId, isCrossingInlineBounds = true)
                        }
    
                        return CodeFragmentCapturedValue.ExtensionReceiver(parent.name.asString(), isCrossingInlineBounds = true)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_deprecate_install.txt

    [short] skip
    
    env GO111MODULE=on
    
    # 'go get' outside a module prints an error.
    ! go get example.com/cmd/a
    stderr '^go: go.mod file not found in current directory or any parent directory.$'
    stderr '^\t''go get'' is no longer supported outside a module.$'
    
    cp go.mod.orig go.mod
    
    # 'go get' inside a module with a non-main package does not print a message.
    # This will stop building in the future, but it's the command we want to use.
    go get rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/site/apt/index.apt

      It is done in <<<InheritanceAssembler>>> ({{{./apidocs/org/apache/maven/model/inheritance/InheritanceAssembler.html}javadoc}}),
      with its <<<DefaultInheritanceAssembler>>> implementation
      ({{{./xref/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.html}source}}).
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10PsiTypeProvider.kt

        ): KaType? {
            throw UnsupportedOperationException("Conversion to KtType is not supported in K1 implementation")
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KaFirPropertyDelegationMethodsReference.kt

    ) : KtPropertyDelegationMethodsReference(element), KaFirReference {
        override fun KaSession.resolveToSymbols(): Collection<KaSymbol> {
            check(this is KaFirSession)
            val property = (expression.parent as? KtElement)?.getOrBuildFirSafe<FirProperty>(firResolveSession) ?: return emptyList()
            if (property.delegate == null) return emptyList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

        override val typeParameters: List<KaTypeParameterSymbol> by cached {
            // The parent Java class might contribute type parameters to the Java type parameter stack, but for this KtSymbol, parent type 
            // parameters aren't relevant.
            psi.typeParameters.mapIndexed { index, psiTypeParameter ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_pseudo_other_branch.txt

    # tag that appears in any commit that is a (transitive) parent of the commit
    # supplied to 'go get', regardless of branches
    
    [short] skip
    [!git] skip
    
    # For this test repository:
    #  tag v0.2.1 is most recent tag on master itself
    #  tag v0.2.2 is on branch2, which was then merged to master
    #  master is a merge commit with both tags as parents
    #
    # The pseudo-version hence sorts immediately after v0.2.2 rather
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top