Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newNamedDomainObjectSet (0.35 sec)

  1. 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)
  2. 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