Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newActionWithMutation (0.16 sec)

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

                super(message);
            }
        }
    
        protected abstract <T> Action<? super T> newActionWithMutation(final Action<? super T> action, final boolean allowMutationMethods);
    
        @Override
        public <T> Action<? super T> withMutationEnabled(Action<? super T> action) {
            return newActionWithMutation(action, true);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 21:58:11 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/DefaultMutationGuard.java

            boolean mutationAllowed = mutationGuardState.get();
            removeThreadLocalStateIfMutationAllowed(mutationAllowed);
            return mutationAllowed;
        }
    
        @Override
        protected <T> Action<? super T> newActionWithMutation(final Action<? super T> action, final boolean allowMutationMethods) {
            return new Action<T>() {
                @Override
                public void execute(T t) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 19:47:53 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top