Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ClassPathModeExceptionCollector (0.52 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/ClassPathModeExceptionCollector.kt

     * limitations under the License.
     */
    package org.gradle.kotlin.dsl.provider
    
    import org.gradle.internal.concurrent.Stoppable
    import java.util.Collections.synchronizedList
    
    
    open class ClassPathModeExceptionCollector : Stoppable {
    
        private
        val collection: MutableList<Exception> = synchronizedList(mutableListOf<Exception>())
    
        val exceptions: List<Exception>
            get() = collection.toList()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 16 19:10:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/BuildServices.kt

            pluginRequestApplicator: PluginRequestApplicator,
            embeddedKotlinProvider: EmbeddedKotlinProvider,
            classPathModeExceptionCollector: ClassPathModeExceptionCollector,
            kotlinScriptBasePluginsApplicator: KotlinScriptBasePluginsApplicator,
            scriptSourceHasher: ScriptSourceHasher,
            classpathHasher: ClasspathHasher,
            implicitImports: ImplicitImports,
            progressLoggerFactory: ProgressLoggerFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top