Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for InjectionStep (0.16 sec)

  1. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

         * @param <I> item type.
         */
        @Deprecated
        public static class InjectionStep<T, I> {
            private final T target;
            private final I item;
    
            public InjectionStep(T target, I item) {
                this(target, item, true);
            }
    
            private InjectionStep(T target, I item, boolean logDeprecation) {
                this.target = target;
                this.item = item;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

                    right.add(item);
                }
            }
    
            return Pair.of(left, right);
        }
    
        public static class InjectionStep<T, I> {
            private final T target;
            private final I item;
    
            public InjectionStep(T target, I item) {
                this.target = target;
                this.item = item;
            }
    
            public T getTarget() {
                return target;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.util.internal.CollectionUtils$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CollectionUtils.java:0)
    Class <org.gradle.util.internal.CollectionUtils$InjectionStep> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (CollectionUtils.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top