Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SingletonSet (0.09 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

            if (action == Actions.DO_NOTHING || action instanceof EmptySet || action == this) {
                return this;
            }
            if (action instanceof SingletonSet) {
                SingletonSet<T> singletonSet = Cast.uncheckedNonnullCast(action);
                return addOne(singletonSet.singleAction);
            }
            if (action instanceof SetWithFewActions) {
                SetWithFewActions<T> compositeSet = Cast.uncheckedNonnullCast(action);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top