Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for DomainObjectCollection (0.64 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/collections/DefaultDomainObjectCollectionFactory.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.collections;
    
    import groovy.lang.Closure;
    import org.gradle.api.DomainObjectCollection;
    import org.gradle.api.DomainObjectSet;
    import org.gradle.api.ExtensiblePolymorphicDomainObjectContainer;
    import org.gradle.api.NamedDomainObjectContainer;
    import org.gradle.api.NamedDomainObjectFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/CustomNamedDomainObjectCollectionTest.groovy

        @Override
        void addAllLater(Provider<? extends Iterable<T>> provider) {
    
        }
    
        @Override
        <S extends T> DomainObjectCollection<S> withType(Class<S> type, Action<? super S> configureAction) {
            return null
        }
    
        @Override
        <S extends T> DomainObjectCollection<S> withType(Class<S> type, Closure configureClosure) {
            return null
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/test/groovy/org/gradle/model/internal/core/DomainObjectCollectionBackedModelMapTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.model.internal.core
    
    import org.gradle.api.DomainObjectCollection
    import org.gradle.api.InvalidUserDataException
    import org.gradle.api.Named
    import org.gradle.api.NamedDomainObjectFactory
    import org.gradle.api.internal.CollectionCallbackActionDecorator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/NamedDomainObjectContainerDelegate.kt

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.support.delegates
    
    import groovy.lang.Closure
    
    import org.gradle.api.Action
    import org.gradle.api.DomainObjectCollection
    import org.gradle.api.NamedDomainObjectCollectionSchema
    import org.gradle.api.NamedDomainObjectContainer
    import org.gradle.api.NamedDomainObjectProvider
    import org.gradle.api.NamedDomainObjectSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/TaskContainerDelegate.kt

            delegate.withType(type)
    
        override fun <S : Task> withType(type: Class<S>, configureAction: Action<in S>): DomainObjectCollection<S> =
            delegate.withType(type, configureAction)
    
        override fun <S : Task> withType(type: Class<S>, configureClosure: Closure<Any>): DomainObjectCollection<S> =
            delegate.withType(type, configureClosure)
    
        override fun findByName(name: String): Task? =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal
    
    import org.gradle.api.DomainObjectCollection
    import spock.lang.Specification
    
    class CompositeDomainObjectSetTest extends Specification {
    
        Class type = String
    
        protected collection(Object... entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    convention properties is **deprecated**. If you need to change from the default values, configure the appropriate tasks directly. If you want to configure all report tasks of the same type in the project, use link:{javadocPath}/org/gradle/api/DomainObjectCollection.html#withType-java.lang.Class-[tasks.withType(...).configureEach(...)] (where the type can be `HtmlDependencyReportTask` for example)....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    }
                }
            """
            buildFile << """
                def domainObjectCollection = objects.domainObjectContainer(Bean)
                myTask.nested = domainObjectCollection
    
                domainObjectCollection.create('first') { prop = providers.gradleProperty('value').get() }
                domainObjectCollection.create('second') { prop = '2' }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    [[sec:ear_default_settings]]
    == Ear
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    [[sec:war_default_settings]]
    == War
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top