Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for compose (0.48 sec)

  1. maven-plugin-api/src/site/apt/index.apt

    ~~ under the License.
    
     -----
     Introduction
     -----
     Hervé Boutemy
     -----
     2012-06-02
     -----
    
    Maven 3 Plugin API
    
     The API for Maven 3 plugins - composed of goals implemented by Mojos - development:
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 24 16:01:00 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

    import org.jetbrains.kotlin.analysis.low.level.api.fir.api.*
    import org.jetbrains.kotlin.analysis.low.level.api.fir.compile.CodeFragmentCapturedId
    import org.jetbrains.kotlin.analysis.low.level.api.fir.compile.CodeFragmentCapturedValueAnalyzer
    import org.jetbrains.kotlin.analysis.low.level.api.fir.compile.CompilationPeerCollector
    import org.jetbrains.kotlin.analysis.low.level.api.fir.project.structure.llFirModuleData
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     * not necessarily the case for declaration providers (e.g. the IDE declaration provider hitting the index without caching).
     *
     * However, since symbol names providers may not be able to compute name sets per their contract, we may have to fall back to the
     * [declaration provider][org.jetbrains.kotlin.analysis.api.platform.declarations.KotlinDeclarationProvider].
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            // context of its session, we will resolve to FIR classes from non-dangling, original modules. If `ktClass` is inside a dangling
            // file, the FIR class for `ktClass` will come from the dangling module. So we'd compare the original FIR class for the supertype
            // with the dangling FIR class for `ktClass`, resulting in a mismatch. To avoid such incompatible comparisons, we need to resolve
            // `ktClass` to the original FIR class.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

        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)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

        }
    
        public abstract fun compile(
            file: KtFile,
            configuration: CompilerConfiguration,
            target: KaCompilerTarget,
            allowedErrorFilter: (KaDiagnostic) -> Boolean,
        ): KaCompilationResult
    }
    
    public typealias KtCompilerFacility = KaCompilerFacility
    
    public interface KaCompilerFacilityMixIn : KaSessionMixIn {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

         *
         * Possible values:
         * - `null` - no initializer was provided
         * - [KaConstantInitializerValue] - initializer value was provided, and it is a compile-time constant
         * - [KaNonConstantInitializerValue] - initializer value was provided, and it is not a compile-time constant. In case of declaration from source it would include correponding [KtExpression]
         *
         */
        public abstract val initializer: KaInitializerValue?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationValue.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * Annotation values are expected to be compile-time constants. According to the
     * [spec](https://kotlinlang.org/spec/annotations.html#annotation-values),
     * allowed kinds are:
     *   * integer types,
     *   * string type,
     *   * enum types,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCompoundAccess.kt

        override val token: KaLifetimeToken get() = backingOperationPartiallyAppliedSymbol.token
    
        /**
         * The function that compute the value for this compound access. For example, if the access is `+=`, this is the resolved `plus`
         * function. If the access is `++`, this is the resolved `inc` function.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

                }
            }
    }
    
    /**
     * Uses the given [factory] to merge all providers of type [T] with the given [mergeTargets] strategy. Other providers (not of type [T]) are
     * added to the resulting composite provider unmerged.
     */
    public inline fun <P : KotlinComposableProvider, reified T : P> List<P>.mergeSpecificProviders(
        factory: KotlinCompositeProviderFactory<P>,
        crossinline mergeTargets: (List<T>) -> P,
    ): P {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top