Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for usually (0.18 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionNavigationTargetsProvider.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    public abstract class KaResolveExtensionNavigationTargetsProvider {
        /**
         * Provides a [PsiElement] which will be opened on a navigation request for [element].
         *
         * Usually returns a single result. Might return an empty collection if there is no navigation target.
         * Also, might multiple targets in a case of ambiguity or multiple targets for a [symbol]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
        public val annotations: List<KaAnnotation>
            get() = this
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDestructuringDeclarationSymbol.kt

        /**
         * A list of [KaVariableSymbol]s which were created from this destructuring declaration.
         *
         * The entries are usually [KaLocalVariableSymbol]s. However, for top-level destructuring declarations in scripts, the entries are
         * [KaPropertySymbol]s instead.
         *
         * E.g., for the following code:
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. .github/pull_request_template.md

    Following this checklist to help us incorporate your
    contribution quickly and easily:
    
     - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/browse/MNG) filed
           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

        private val inlineFunctionsWithBody: MutableSet<KtDeclarationWithBody> = mutableSetOf()
    
        /**
         * Collects all inline function calls in an [element] (usually a file) and follows each transitively.
         */
        fun analyze(element: KtElement) {
            val project = element.project
            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    
    /**
     * Type substitutor. Performs substitution of a type parameters inside a type to some fixed type.
     * Usually can be represented as a map from type parameter to it corresponding substitution.
     *
     * Example of a substitution:
     * ```
     * substitutor = { T -> Int, S -> Long }
     * substitute(Map<T, S>, substitutor) = Map<Int, Long>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
     * produce a merged provider which is more efficient than the naive sequential composite provider.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

        private val transitiveDependentsByKtModule = createConcurrentSoftMap<KtModule, Set<KtModule>>()
    
        private val refinementDependentsByKtModule: Map<KtModule, Set<KtModule>> by lazy {
            // Refinement dependents will usually only be requested for expect classes, so it's better to compute them lazily as they're not
            // needed for all projects.
            buildDependentsMap(modules) { it.transitiveDependsOnDependencies.asSequence() }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    main channel of communication for contributors.  
    There are some guidelines which will make applying PRs easier for us:
    + Create a topic branch from where you want to base your work (this is usually the master branch).
      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/index.apt

         which combines profile activation+injection and inheritance assembly from parents,
    
       * known limitations are notably that:
    
         1. plugin goal execution in a child is usually simply appended (at end): you can't try to insert in the middle of pre-existing inherited executions,
    
         2. append happens at plugin level first, then goal level, independently from phases.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 14 05:48:39 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top