Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for exportClassPathFromHierarchyOf (0.23 sec)

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

        private
        fun computeCompilationClassPath(scope: ClassLoaderScope): ClassPath {
            return gradleKotlinDsl + exportClassPathFromHierarchyOf(scope)
        }
    
        internal
        fun exportClassPathFromHierarchyOf(scope: ClassLoaderScope): ClassPath {
            require(scope.isLocked) {
                "$scope must be locked before it can be used to compute a classpath!"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GeneratePluginSpecBuilderAccessors.kt

            kotlinScriptClassPathProviderOf(rootProject).run {
                withAsynchronousIO(rootProject) {
                    buildPluginDependencySpecAccessorsFor(
                        pluginDescriptorsClassPath = exportClassPathFromHierarchyOf(buildSrcClassLoaderScope),
                        srcDir = getSourcesOutputDir(workspace),
                        binDir = getClassesOutputDir(workspace),
                    )
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top