Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for whenObjectRemoved (0.39 sec)

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

            whenObjectAdded(ConfigureUtil.configureUsing(action));
        }
    
        @Override
        public Action<? super T> whenObjectRemoved(Action<? super T> action) {
            return delegate.whenObjectRemoved(action);
        }
    
        @Override
        public void whenObjectRemoved(Closure action) {
            whenObjectRemoved(ConfigureUtil.configureUsing(action));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 01:39:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/NamedDomainObjectContainerDelegate.kt

        override fun getCollectionSchema(): NamedDomainObjectCollectionSchema =
            delegate.collectionSchema
    
        override fun whenObjectRemoved(action: Action<in T>): Action<in T> =
            delegate.whenObjectRemoved(action)
    
        override fun whenObjectRemoved(action: Closure<Any>) =
            delegate.whenObjectRemoved(action)
    
        override fun findAll(spec: Closure<Any>): MutableSet<T> =
            delegate.findAll(spec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/CustomNamedDomainObjectCollectionTest.groovy

            return null
        }
    
        @Override
        void whenObjectAdded(Closure action) {
    
        }
    
        @Override
        Action<? super T> whenObjectRemoved(Action<? super T> action) {
            return null
        }
    
        @Override
        void whenObjectRemoved(Closure action) {
    
        }
    
        @Override
        void all(Action<? super T> action) {
    
        }
    
        @Override
        void all(Closure action) {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/TaskContainerDelegate.kt

            delegate.collectionSchema
    
        override fun whenObjectRemoved(action: Action<in Task>): Action<in Task> =
            delegate.whenObjectRemoved(action)
    
        override fun whenObjectRemoved(action: Closure<Any>) =
            delegate.whenObjectRemoved(action)
    
        override fun findAll(spec: Closure<Any>): MutableSet<Task> =
            delegate.findAll(spec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/DefaultNativeToolChainRegistry.java

                @Override
                public void execute(NativeToolChain toolChain) {
                    searchOrder.add((NativeToolChainInternal) toolChain);
                }
            });
            whenObjectRemoved(new Action<NativeToolChain>() {
                @Override
                public void execute(NativeToolChain toolChain) {
                    searchOrder.remove(toolChain);
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskCollection.java

                        })
                    );
                }
            };
        }
    
        public Action<? super T> whenObjectRemovedInternal(Action<? super T> action) {
            return super.whenObjectRemoved(action);
        }
    
        // Cannot be private due to reflective instantiation
        public class ExistingTaskProvider<I extends T> extends ExistingNamedDomainObjectProvider<I> implements TaskProvider<I> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top