Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NamedDomainObjectProvider (0.61 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompileExtension.kt

        }
    
        abstract val compilations: NamedDomainObjectContainer<JvmCompilation>
    
        fun Project.addCompilationFrom(sourceSet: NamedDomainObjectProvider<SourceSet>): JvmCompilation {
            return addCompilationFrom(sourceSet.get())
        }
    
        fun Project.addCompilationFrom(sourceSet: NamedDomainObjectProvider<SourceSet>, configure: JvmCompilation.() -> Unit): JvmCompilation {
            return addCompilationFrom(sourceSet.get(), configure)
        }
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Tue Jun 24 14:00:52 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/util/ConfigurationExtensions.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.basics.util
    
    import org.gradle.api.NamedDomainObjectProvider
    import org.gradle.api.artifacts.Configuration
    import org.gradle.api.provider.Provider
    import java.io.File
    
    fun Configuration.getSingleFileProvider(): Provider<File> {
        val name = this.name
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Mon Aug 18 18:02:41 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayAttributes.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.nullaway
    
    import org.gradle.api.NamedDomainObjectProvider
    import org.gradle.api.artifacts.Configuration
    import org.gradle.api.attributes.Attribute
    import org.gradle.api.attributes.AttributeCompatibilityRule
    import org.gradle.api.attributes.CompatibilityCheckDetails
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Aug 20 13:18:23 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top