Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for symbolLink (0.17 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

        final override val name: Name get() = withValidityAssertion { fieldName }
        final override val psi: PsiElement? get() = withValidityAssertion { null }
        final override val symbolKind: KaSymbolKind get() = withValidityAssertion { KaSymbolKind.LOCAL }
        override val origin: KaSymbolOrigin get() = withValidityAssertion { KaSymbolOrigin.PROPERTY_BACKING_FIELD }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                    // Scripts are always top-level
                    return false
                }
    
                else -> {}
            }
    
            if (symbol is KaSymbolWithKind && symbol.symbolKind == KaSymbolKind.TOP_LEVEL) {
                val containingFile = (symbol.firSymbol.fir as? FirElementWithResolveState)?.getContainingFile()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. pkg/volume/util/volumepathhandler/volume_path_handler.go

    	if err != nil && !os.IsNotExist(err) {
    		return fmt.Errorf("failed to remove directory %s: %v", mapPath, err)
    	}
    	return nil
    }
    
    // IsSymlinkExist returns true if specified file exists and the type is symbolik link.
    // If file doesn't exist, or file exists but not symbolic link, return false with no error.
    // On other cases, return false with error from Lstat().
    func (v VolumePathHandler) IsSymlinkExist(mapPath string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top