Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,115 for apiall (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

            result1.version('5.0-mockbaseline-1').results.addAll(measuredOperations([1]))
            result1.version('master').results.addAll(measuredOperations([2]))
    
            CrossVersionPerformanceResults result2 = crossVersionResults([startTime: 200])
            result2.version('5.0-mockbaseline-2').results.addAll(measuredOperations([2, 2]))
            result2.version('master').results.addAll(measuredOperations([1, 1]))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/LazyAdditionToDomainObjectCollectionIntegrationTest.groovy

            buildFile << """
                container.all {
                    println "all called on " + it
                }
                def list = objects.listProperty(Base)
                list.addAll(create(Base))
                container.addAllLater(list)
            """
            expect:
            succeeds("help")
            outputContains("all called on ")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 10 20:36:26 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinByModulesResolutionScopeProvider.kt

        override fun getResolutionScope(module: KtModule): GlobalSearchScope {
            val allModules = topologicalSort(listOf(module)) {
                buildList {
                    addAll(directDependsOnDependencies)
                    addAll(directFriendDependencies)
                    addAll(directRegularDependencies)
                }
            }
    
            return GlobalSearchScope.union(allModules.map { it.contentScope })
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 948 bytes
    - Viewed (0)
  7. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/InputReferences.java

            return nestedReferences;
        }
    
        public void addNestedReferences(InputReferences inputReferences) {
            nestedReferences.addAll(inputReferences.getOwnReferences());
            nestedReferences.addAll(inputReferences.getNestedReferences());
        }
    
        /**
         * Used from generated code, see {@link RuleVisitor#visitGeneratedClosure(org.codehaus.groovy.ast.ClassNode)}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top