Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for CompositeDomainObjectSet (0.44 sec)

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

            CompositeDomainObjectSet<T> out = new CompositeDomainObjectSet<T>(delegate, callbackActionDecorator);
            for (DomainObjectCollection<? extends T> c : collections) {
                out.addCollection(c);
            }
            return out;
        }
    
        private CompositeDomainObjectSet(DefaultDomainObjectSet<T> delegate, CollectionCallbackActionDecorator callbackActionDecorator) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

        <T> NamedDomainObjectList<T> newNamedDomainObjectList(Class<T> elementType);
    
        /**
         * Creates a {@link CompositeDomainObjectSet} for managing a collection of {@link DomainObjectCollection} of the specified type.
         */
        <T> CompositeDomainObjectSet<T> newDomainObjectSet(Class<T> elementType, DomainObjectCollection<? extends T> collection);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/collections/DefaultDomainObjectCollectionFactory.java

        }
    
        @Override
        public <T> CompositeDomainObjectSet<T> newDomainObjectSet(Class<T> elementType, DomainObjectCollection<? extends T> collection) {
            return CompositeDomainObjectSet.create(elementType, collectionCallbackActionDecorator, collection);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/CompositePublicationArtifactSet.java

     * limitations under the License.
     */
    
    package org.gradle.api.publish.internal;
    
    import org.gradle.api.file.FileCollection;
    import org.gradle.api.internal.CompositeDomainObjectSet;
    import org.gradle.api.internal.DelegatingDomainObjectSet;
    import org.gradle.api.internal.file.FileCollectionInternal;
    import org.gradle.api.internal.file.UnionFileCollection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectSetTest.groovy

            def c1 = new DefaultDomainObjectSet<String>(String, callbackActionDecorator)
            def c2 = new DefaultDomainObjectSet<String>(String, callbackActionDecorator)
            given:
            def composite = CompositeDomainObjectSet.<String>create(String, c1, c2)
            def set = new DefaultDomainObjectSet<String>(String, composite.getStore(), callbackActionDecorator)
    
            when:
            c1.add("a")
            c1.add("b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

    import org.gradle.api.component.SoftwareComponent;
    import org.gradle.api.file.Directory;
    import org.gradle.api.internal.CollectionCallbackActionDecorator;
    import org.gradle.api.internal.CompositeDomainObjectSet;
    import org.gradle.api.internal.artifacts.DefaultModuleVersionIdentifier;
    import org.gradle.api.internal.artifacts.Module;
    import org.gradle.api.internal.artifacts.configurations.DependencyMetaDataProvider;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/CompositeDomainObjectSetTest.groovy

            entries.each { collection.add(it) }
            collection
        }
    
        protected composite(DomainObjectCollection... collections) {
            CompositeDomainObjectSet.create(type, *collections)
        }
    
        def "empty composite contains no elements"() {
            expect:
            composite().empty
        }
    
        def "composite containing one collection"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 05 20:02:22 UTC 2018
    - 10.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        private final CalculatedValueContainerFactory calculatedValueContainerFactory;
        private final ProjectStateRegistry projectStateRegistry;
        private CompositeDomainObjectSet<Dependency> inheritedDependencies;
        private CompositeDomainObjectSet<DependencyConstraint> inheritedDependencyConstraints;
        private DefaultDependencySet allDependencies;
        private DefaultDependencyConstraintSet allDependencyConstraints;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top