Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 905 for Super (0.06 sec)

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

            ImmutableSet.Builder<Action<? super T>> builder = ImmutableSet.builder();
            one.unpackInto(builder);
            two.unpackInto(builder);
            ImmutableSet<Action<? super T>> set = builder.build();
            return fromActions(set);
        }
    
        private static <T> ImmutableActionSet<T> plus(ImmutableActionSet<T> one, Action<? super T> two) {
            ImmutableSet.Builder<Action<? super T>> builder = ImmutableSet.builder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/MethodVisitorScope.java

            super.visitInsn(SWAP);
        }
    
        public void _POP() {
            super.visitInsn(POP);
        }
    
        public void _DUP() {
            super.visitInsn(DUP);
        }
    
        public void _ICONST_0() {
            super.visitInsn(ICONST_0);
        }
    
        public void _ICONST_1() {
            super.visitInsn(ICONST_1);
        }
    
        public void _ACONST_NULL() {
            super.visitInsn(ACONST_NULL);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions.java

            private final Instantiator instantiator;
    
            public DependencyResolveDetailsWrapperAction(Action<? super DependencyResolveDetails> delegate, ComponentSelectorConverter componentSelectorConverter, Supplier<Action<? super ArtifactSelectionDetails>> artifactSelectionAction, Instantiator instantiator) {
                super(artifactSelectionAction);
                this.delegate = delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java

      }
    
      public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1) {
        return ofInternal(Ordering.natural(), e1);
      }
    
      @SuppressWarnings("unchecked")
      public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1, E e2) {
        return ofInternal(Ordering.natural(), e1, e2);
      }
    
      @SuppressWarnings("unchecked")
      public static <E extends Comparable<? super E>> ImmutableSortedSet<E> of(E e1, E e2, E e3) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

        }
    
        @Override
        public List<? extends BuildOption<? super StartParameterInternal>> getAllOptions() {
            return options;
        }
    
        public static class ProjectCacheDirOption extends StringBuildOption<StartParameterInternal> {
            public static final String PROPERTY_NAME = "org.gradle.projectcachedir";
    
            public ProjectCacheDirOption() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CollectCollectors.java

      static <E extends Comparable<? super E>>
          Collector<Range<E>, ?, ImmutableRangeSet<E>> toImmutableRangeSet() {
        return (Collector) TO_IMMUTABLE_RANGE_SET;
      }
    
      // Multisets
    
      static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset(
          Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) {
        checkNotNull(elementFunction);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:21:40 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CollectCollectors.java

      static <E extends Comparable<? super E>>
          Collector<Range<E>, ?, ImmutableRangeSet<E>> toImmutableRangeSet() {
        return (Collector) TO_IMMUTABLE_RANGE_SET;
      }
    
      // Multisets
    
      static <T extends @Nullable Object, E> Collector<T, ?, ImmutableMultiset<E>> toImmutableMultiset(
          Function<? super T, ? extends E> elementFunction, ToIntFunction<? super T> countFunction) {
        checkNotNull(elementFunction);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:21:40 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/mdo/java/ImmutableCollections.java

                throw uoe();
            }
    
            @Override
            public Object computeIfPresent(Object key, BiFunction<? super Object, ? super Object, ?> remappingFunction) {
                throw uoe();
            }
    
            @Override
            public Object compute(Object key, BiFunction<? super Object, ? super Object, ?> remappingFunction) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

      private final transient Comparator<? super K> comparator;
    
      ImmutableSortedMap(SortedMap<K, V> delegate, Comparator<? super K> comparator) {
        super(delegate);
        this.comparator = comparator;
        this.sortedDelegate = delegate;
      }
    
      public static <T extends @Nullable Object, K, V>
          Collector<T, ?, ImmutableSortedMap<K, V>> toImmutableSortedMap(
              Comparator<? super K> comparator,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

                List<SideEffect<? super T>> flatSideEffects = new ArrayList<>();
    
                for (SideEffect<? super T> sideEffect : sideEffects) {
                    if (sideEffect == null) {
                        continue;
                    }
    
                    if (sideEffect instanceof CompositeSideEffect) {
                        CompositeSideEffect<? super T> compositeSideEffect = Cast.uncheckedNonnullCast(sideEffect);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
Back to top