Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for newNamedDomainObjectSet (0.24 sec)

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

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

            return Cast.uncheckedCast(instantiator.newInstance(DefaultDomainObjectSet.class, elementType, collectionCallbackActionDecorator));
        }
    
        @Override
        public <T> NamedDomainObjectSet<T> newNamedDomainObjectSet(Class<T> elementType) {
            Instantiator instantiator = instantiatorFactory.decorateLenient();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

            SharedResourceLeaseRegistry leaseRegistry,
            BuildServiceProvider.Listener listener
        ) {
            this.buildIdentifier = buildIdentifier;
            this.registrations = uncheckedCast(collectionFactory.newNamedDomainObjectSet(BuildServiceRegistration.class));
            this.collectionFactory = collectionFactory;
            this.instantiatorFactory = instantiatorFactory;
            this.services = services;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/model/DefaultObjectFactory.java

        }
    
        @Override
        public <T> NamedDomainObjectSet<T> namedDomainObjectSet(Class<T> elementType) {
            return domainObjectCollectionFactory.newNamedDomainObjectSet(elementType);
        }
    
        @Override
        public <T> NamedDomainObjectList<T> namedDomainObjectList(Class<T> elementType) {
            return domainObjectCollectionFactory.newNamedDomainObjectList(elementType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top