Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 266 for Symbol (0.19 sec)

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

            return classOrObject.declarations.singleOrNull()
        }
    
        private fun provideSourceForFunctionClass(klass: FirClass): PsiElement? {
            return classByClassId(klass.symbol.classId, klass.llFirSession.ktModule)
        }
    
        private fun classByClassId(classId: ClassId, ktModule: KtModule): KtClassOrObject? {
            val project = ktModule.project
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Jun 02 14:27:26 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    		cause:      err,
    	}
    }
    
    func errParseMissingIdentAfterAt(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseMissingIdentAfterAt",
    		message:    "Did not find the expected identifier after the @ symbol in the SQL expression.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errParseUnexpectedOperator(err error) *s3Error {
    	return &s3Error{
    		code:       "ParseUnexpectedOperator",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolProvider.kt

    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.KtFe10FileSymbol
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.KtFe10PackageSymbol
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtClassSymbol
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtClassifierSymbol
    import org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.base.toKtSymbol
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Aug 17 13:01:02 GMT 2023
    - 7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

            val firTargetSymbol = fir.target.labeledElement
            if (firTargetSymbol is FirErrorFunction) return null
            return firSymbolBuilder.callableBuilder.buildCallableSymbol(firTargetSymbol.symbol)
        }
    
        override fun getWhenMissingCases(whenExpression: KtWhenExpression): List<WhenMissingCase> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  5. doc/README.md

    ideally referring to a person with the responsibility to complete the note.
    
    Use the following forms in your markdown:
    
    	[http.Request]                     # symbol documentation; auto-linked as in Go doc strings
    	[#12345](/issue/12345)             # GitHub issues
    	[CL 6789](/cl/6789)                # Gerrit changelists
    
    ## For the release team
    
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 26 21:24:36 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/build.gradle.kts

        implementation(project(":analysis:analysis-api-providers"))
        implementation(project(":analysis:analysis-internal-utils"))
        implementation(project(":analysis:kt-references"))
        implementation(project(":analysis:symbol-light-classes"))
    
        testImplementation(projectTests(":analysis:low-level-api-fir"))
        testImplementation(project(":analysis:analysis-api-standalone:analysis-api-standalone-base"))
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 05 16:42:25 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. internal/disk/directio_unsupported.go

    // OpenBSD, Windows, and illumos do not support O_DIRECT.
    // On Windows there is no documentation on disabling O_DIRECT.
    // For these systems we do not attempt to build the 'directio' dependency since
    // the O_DIRECT symbol may not be exposed resulting in a failed build.
    //
    //
    // On illumos an explicit O_DIRECT flag is not necessary for two primary
    // reasons. Note that ZFS is effectively the default filesystem on illumos
    // systems.
    //
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Oct 18 18:08:15 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            } else {
                declaration.resolveToFirSymbol(firResolveSession, FirResolvePhase.TYPES).fir
            }
            return when (firDeclaration) {
                is FirCallableDeclaration -> firDeclaration.symbol.resolvedReturnType.asKtType()
                is FirFunctionTypeParameter -> firDeclaration.returnTypeRef.coneType.asKtType()
                else -> unexpectedElementError<FirElement>(firDeclaration)
            }
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Mar 26 18:13:17 GMT 2024
    - 24.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            bindings: JvmSerializationBindings,
        ) {
            for (fir in declarations) {
                if (fir !is FirFunction && fir !is FirProperty && fir !is FirTypeAlias) continue
    
                fir.symbol.lazyResolveToPhase(FirResolvePhase.ANNOTATION_ARGUMENTS)
    
                val psiElements = mapping[fir.psi as KtElement]
                val methods = psiElements.filterIsInstance<PsiMethod>()
                when (fir) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Mar 26 09:19:07 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. docs/en/mkdocs.yml

              unwrap_annotated: true
              filters:
              - '!^_'
              merge_init_into_class: true
              docstring_section_style: spacy
              signature_crossrefs: true
              show_symbol_type_heading: true
              show_symbol_type_toc: true
    nav:
    - FastAPI: index.md
    - features.md
    - Learn:
      - learn/index.md
      - python-types.md
      - async.md
      - Tutorial - User Guide:
        - tutorial/index.md
    Others
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 9.1K bytes
    - Viewed (0)
Back to top