Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 474 for apiall (0.26 sec)

  1. src/cmd/compile/internal/ssa/stackalloc.go

    				p := e.b
    				t.clear()
    				t.addAll(s.live[p.ID])
    				t.addAll(live.contents())
    				t.addAll(spillLive[p.ID])
    				for _, v := range phis {
    					a := v.Args[i]
    					if s.values[a.ID].needSlot {
    						t.add(a.ID)
    					}
    					if spill := s.values[a.ID].spill; spill != nil {
    						//TODO: remove?  Subsumed by SpillUse?
    						t.add(spill.ID)
    					}
    				}
    				if t.size() == len(s.live[p.ID]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top