Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 705 for Hall (0.09 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModificationService.kt

        /**
         * Publishes an event of global modification of the module state of all [KtModule]s.
         */
        @TestOnly
        public abstract fun publishGlobalModuleStateModification()
    
        /**
         * Publishes an event of global modification of the module state of all source [KtModule]s.
         */
        @TestOnly
        public abstract fun publishGlobalSourceModuleStateModification()
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java

            this.projectBuilds = projectBuilds;
        }
    
        public int getNumberOfBuilds() {
            return projectBuilds.size();
        }
    
        /**
         * Gets all the builds that have no reactor-dependencies
         *
         * @return A set of all the initial builds
         */
        public List<MavenProject> getRootSchedulableBuilds() {
            Set<MavenProject> result = new LinkedHashSet<>();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/contracts/description/KtContractDescriptionElementRenderer.kt

        endWithNewLine: Boolean = true
    ) {
        appendLine(prop.name + ":")
        withIndent {
            renderer(prop.call(), endWithNewLine)
        }
    }
    
    private fun PrettyPrinter.appendSimpleProperty(prop: KProperty<Any>, endWithNewLine: Boolean = true) {
        append(prop.name + ": ")
        append(prop.call().toString())
        if (endWithNewLine) appendLine()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/permissions/KaBaseWriteActionStartedChecker.kt

    import com.intellij.openapi.application.ApplicationManager
    
    /**
     * Ensures that a [WriteActionStartedInAnalysisContextException] is thrown if a write action was started *inside* an
     * [analyze][org.jetbrains.kotlin.analysis.api.analyze] call.
     */
    internal class KaBaseWriteActionStartedChecker(parentDisposable: Disposable) {
        private val currentAnalyzeCallDepth = ThreadLocal.withInitial { 0 }
    
        init {
            val listener = object : ApplicationListener {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/resolver/AbstractResolveCandidatesTest.kt

            if (candidates.isEmpty()) {
                testServices.assertions.assertEquals(null, resolvedCall) {
                    "Inconsistency between candidates and resolved call. " +
                            "Resolved call is not null, but no candidates found.\n" +
                            stringRepresentation(resolvedCall)
                }
            } else {
                if (resolvedCall == null) return
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSignatureSubstitutor.kt

        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
        public fun <S : KaCallableSymbol> S.asSignature(): KaCallableSignature<S> =
            withValidityAssertion { analysisSession.signatureSubstitutor.asSignature(this) }
    
        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface PathType {
        /**
         * The type for all paths that could not be placed in any of the types requested by a caller.
         * This type can appear in the return value of a call to
         * {@link Session#resolveDependencies resolveDependencies(...)} when at least one dependency
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/configuration-management.apt

     utilizing the local installation, the group level allows configuration management for all the projects
     that belong to the same group, the project level allows configuration management at
     the project level, and the user level allows users to override settings on
     the site level, group level and project level.
    
    * Site configuration
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceOutOfBlockModificationListener.kt

        /**
         * [onModification] is invoked in a write action before or after global out-of-block modification of all sources.
         *
         * The source code of all source [KtModule]s in the project should be considered modified when this event is received. This includes
         * source files being moved or removed. Thus, all caches related to source code and source files should be invalidated.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaPartiallyAppliedSymbol.kt

    /**
     * A callable symbol partially applied with receivers and type arguments. Essentially, this is a call that misses some information. For
     * properties, the missing information is the type of access (read, write, or compound access) to this property. For functions, the missing
     * information is the value arguments for the call.
     */
    public class KaPartiallyAppliedSymbol<out S : KaCallableSymbol, out C : KaCallableSignature<S>>(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top