Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,061 for addCell (0.1 sec)

  1. guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllTester.java

        assertTrue(
            "addAll(allPresent) should return true", getList().addAll(MinimalCollection.of(e0())));
        expectAdded(e0());
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_ADD)
      @CollectionSize.Require(absent = ZERO)
      public void testAddAll_unsupportedAllPresent() {
        try {
          getList().addAll(MinimalCollection.of(e0()));
          fail("addAll(allPresent) should throw");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/MavenInvocationSpec.groovy

                this.tasksToRun.addAll(Arrays.asList(taskToRun))
                this
            }
    
            InvocationBuilder tasksToRun(Iterable<String> taskToRun) {
                this.tasksToRun.addAll(taskToRun)
                this
            }
    
            InvocationBuilder jvmOpts(String... args) {
                this.jvmOpts.addAll(Arrays.asList(args))
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/graph/DependencyGraphRendererSpec.groovy

            def dep2 = new SimpleDependency("dep2")
            def dep21 = new SimpleDependency("dep2.1")
            def dep22 = new SimpleDependency("dep2.2")
    
            root.children.addAll(dep1, dep2)
            dep1.children.addAll(dep11)
            dep2.children.addAll(dep21, dep22)
    
            when:
            renderer.render([root])
            renderer.complete()
    
            then:
            textOutput.value.readLines() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 03 14:10:29 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirDefaultStarImportingScope.kt

        override fun getPossibleCallableNames(): Set<Name> = buildSet {
            addAll(firstWrappedScope.getPossibleCallableNames())
            addAll(secondWrappedScope.getPossibleCallableNames())
        }
    
        override fun getPossibleClassifierNames(): Set<Name> = buildSet {
            addAll(firstWrappedScope.getPossibleClassifierNames())
            addAll(secondWrappedScope.getPossibleClassifierNames())
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/BaselineVersionTest.groovy

        def baseline = new BaselineVersion("7.5")
        def current = new BaselineVersion("7.6")
    
        def "does consider changes with high confidence"() {
            baseline.results.addAll([millis(100)] * 10)
            current.results.addAll([millis(115)] * 10)
            def confidence = calculateConfidence(baseline, current)
            def minConfidence = confidence - 0.01
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllTester.java

        assertTrue(
            "addAll(allPresent) should return true", getList().addAll(MinimalCollection.of(e0())));
        expectAdded(e0());
      }
    
      @CollectionFeature.Require(absent = SUPPORTS_ADD)
      @CollectionSize.Require(absent = ZERO)
      public void testAddAll_unsupportedAllPresent() {
        try {
          getList().addAll(MinimalCollection.of(e0()));
          fail("addAll(allPresent) should throw");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/AbstractNativeCompileSpec.java

            return includeRoots;
        }
    
        @Override
        public void include(File... includeRoots) {
            Collections.addAll(this.includeRoots, includeRoots);
        }
    
        @Override
        public void include(Iterable<File> includeRoots) {
            addAll(this.includeRoots, includeRoots);
        }
    
        @Override
        public List<File> getSystemIncludeRoots() {
            return systemIncludeRoots;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultLinkerSpec.java

        }
    
        @Override
        public void objectFiles(Iterable<File> objectFiles) {
            addAll(this.objectFiles, objectFiles);
        }
    
        @Override
        public List<File> getLibraries() {
            return libraries;
        }
    
        @Override
        public void libraries(Iterable<File> libraries) {
            addAll(this.libraries, libraries);
        }
    
        @Override
        public List<File> getLibraryPath() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/test/groovy/org/gradle/api/internal/provider/views/AbstractHasMultiValuesPropertyCollectionViewTest.groovy

            given:
            def property = multiValueProperty()
            Collection<String> collection = newCollection(property)
    
            when:
            property.add("first")
            property.addAll(["second", "third"])
            collection.addAll(["forth", "fifth"])
    
            then:
            collection.containsAll(["first", "second", "third", "forth", "fifth"])
    
            when:
            collection.remove("third")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/WrapUtil.java

            set.addAll(Arrays.asList(items));
            return set;
        }
    
        /**
         * Wraps the given items in a mutable ordered set.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Set<T> toLinkedSet(T... items) {
            logDeprecation(7);
            Set<T> coll = new LinkedHashSet<T>();
            Collections.addAll(coll, items);
            return coll;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 16:04:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top