Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 451 for addCell (0.24 sec)

  1. android/guava-tests/test/com/google/common/math/StatsAccumulatorTest.java

        oneValueAccumulatorByAddAllEmptyStats.addAll(Stats.of());
    
        twoValuesAccumulator = new StatsAccumulator();
        twoValuesAccumulator.addAll(TWO_VALUES);
    
        twoValuesAccumulatorByAddAllStats = new StatsAccumulator();
        twoValuesAccumulatorByAddAllStats.addAll(Stats.of(ONE_VALUE));
        twoValuesAccumulatorByAddAllStats.addAll(Stats.of(OTHER_ONE_VALUE));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectListTest.groovy

            list == ['a']
        }
    
        def "can add collection at given index"() {
            when:
            list.addAll(0, ['a', 'b'])
    
            then:
            list == ['a', 'b']
    
            when:
            list.addAll(1, ['c', 'd'])
    
            then:
            list == ['a', 'c', 'd', 'b']
        }
    
        def "fires events when elements are added"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:21:31 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

            assertThat(ArrayUtil.addAll((Object[]) null, (Object[]) null), is(nullValue()));
            assertThat(ArrayUtil.addAll(null, emptyArray).length, is(0));
            assertThat(ArrayUtil.addAll(emptyArray, null), is(sameInstance(emptyArray)));
            assertThat(ArrayUtil.addAll(emptyArray, null), is(sameInstance(emptyArray)));
            assertThat(ArrayUtil.addAll(emptyArray, emptyArray), is(sameInstance(emptyArray)));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

                SetWithFewActions<T> compositeSet = Cast.uncheckedNonnullCast(action);
                return addAll(compositeSet);
            }
            if (action instanceof SetWithManyActions) {
                SetWithManyActions<T> compositeSet = Cast.uncheckedNonnullCast(action);
                return addAll(compositeSet);
            }
            return addOne(action);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/BroadcastDispatchTest.groovy

            expect:
            def dispatch1 = BroadcastDispatch.empty(TestListener)
            dispatch1.addAll([]).is(dispatch1)
    
            def dispatch2 = dispatch1.add(listener1)
            dispatch2.addAll([listener1, listener1]).is(dispatch2)
    
            def dispatch3 = dispatch2.add(listener2)
            dispatch3.addAll([listener2, listener1]).is(dispatch3)
        }
    
        def "can remove multiple listeners as a batch"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/StatsAccumulator.java

      }
    
      /**
       * Adds the given values to the dataset. The stream will be completely consumed by this method.
       *
       * @param values a series of values
       * @since 28.2
       */
      public void addAll(IntStream values) {
        addAll(values.collect(StatsAccumulator::new, StatsAccumulator::add, StatsAccumulator::addAll));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

        public final void addAll(T... elements) {
            getConfigurer(false).addAll(elements);
        }
    
        @Override
        public void addAll(Iterable<? extends T> elements) {
            getConfigurer(false).addAll(elements);
        }
    
        @Override
        public void addAll(Provider<? extends Iterable<? extends T>> provider) {
            getConfigurer(false).addAll(provider);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/CollectionUtilsTest.groovy

            then:
            thrown(NullPointerException)
        }
    
        def "addAll from iterable"() {
            expect:
            addAll([], [1, 2, 3] as Iterable) == [1, 2, 3]
            addAll([] as Set, [1, 2, 3, 1] as Iterable) == [1, 2, 3] as Set
        }
    
        def "addAll from array"() {
            expect:
            addAll([], 1, 2, 3) == [1, 2, 3]
            addAll([] as Set, 1, 2, 3, 1) == [1, 2, 3] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/PairedStatsAccumulatorTest.java

        emptyAccumulatorByAddAllEmptyPairedStats.addAll(emptyAccumulator.snapshot());
    
        oneValueAccumulator = new PairedStatsAccumulator();
        oneValueAccumulator.add(ONE_VALUE, OTHER_ONE_VALUE);
    
        oneValueAccumulatorByAddAllEmptyPairedStats = new PairedStatsAccumulator();
        oneValueAccumulatorByAddAllEmptyPairedStats.add(ONE_VALUE, OTHER_ONE_VALUE);
        oneValueAccumulatorByAddAllEmptyPairedStats.addAll(emptyAccumulator.snapshot());
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CollectionPropertyIntegrationTest.groovy

                verify {
                    prop = [ 'a' ]
                    prop.add('b')
                    prop.add(project.provider { 'c' })
                    prop.addAll('d', 'e')
                    prop.addAll(['f', 'g'])
                    prop.addAll(project.provider { [ 'h', 'i' ] })
                    expected = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i' ]
                }
            """
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:57:00 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top