Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 218 for apiall (0.27 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

            set.addAll(set1);
            set.addAll(set2);
            return set;
          }
    
          @Override
          @SuppressWarnings({"nullness", "unchecked"}) // see supertype
          public ImmutableSet<@NonNull E> immutableCopy() {
            ImmutableSet.Builder<@NonNull E> builder =
                new ImmutableSet.Builder<@NonNull E>()
                    .addAll((Iterable<@NonNull E>) set1)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         * @since 4.10
         */
        @SuppressWarnings("unchecked")
        void addAll(T... elements);
    
        /**
         * Adds zero or more elements to the property value.
         *
         * <p>The given iterable will be queried when the value of this property is queried.
         *
         * @param elements The elements to add.
         * @since 4.10
         */
        void addAll(Iterable<? extends T> elements);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. build-logic/uber-plugins/src/main/kotlin/gradlebuild.kotlin-experimental-contracts.gradle.kts

     * limitations under the License.
     */
    
    
    tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
        compilerOptions {
            freeCompilerArgs.addAll(
                "-opt-in=kotlin.contracts.ExperimentalContracts",
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 19:09:59 UTC 2024
    - 835 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            int buildModelQueries
    
            void projectConfigured(String path) {
                projects.add(path)
            }
    
            void projectsConfigured(String... paths) {
                projects.addAll(paths.toList())
            }
    
            /**
             * The given number of build scoped models are created.
             */
            void buildModelCreated(int count = 1) {
                runsTasks = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/CategoryFilter.java

            if (annotation != null) {
                categories.addAll(Arrays.asList(annotation.value()));
            }
    
            if (parent != null) {
                annotation = parent.getAnnotation(Category.class);
                if (annotation != null) {
                    categories.addAll(Arrays.asList(annotation.value()));
                }
            }
    
            boolean result = inclusions.isEmpty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
    }
    
    description = "Provider-side implementation for running tooling model builders"
    
    errorprone {
        disabledChecks.addAll(
            "InlineMeSuggester", // 1 occurrences
        )
    }
    
    dependencies {
        implementation(project(":base-services-groovy")) // for 'Specs'
        implementation(project(":core-api"))
        implementation(project(":dependency-management"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/antlr/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Adds support for generating parsers from Antlr grammars."
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
            "Finally", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.stdlibJavaExtensions)
        api(project(":core"))
        api(project(":core-api"))
        api(project(":files"))
        api(project(":model-core"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

            } else {
                elements.addAll(contents)
            }
        }
    
        fun addElements(target: MutableSet<Any>) {
            if (containsTransforms) {
                target.add(ResolutionBackedFileCollectionSpec(resolutionHostDisplayName, lenient, elements.toList()))
            } else {
                // Contains a fixed set of files - can throw away this instance
                target.addAll(elements)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/software/resources-gcs/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Implementation for interacting with Google Cloud Storage (GCS) repositories"
    
    errorprone {
        disabledChecks.addAll(
            "StringCaseLocaleUsage", // 1 occurrences
            "UnusedMethod", // 1 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":resources"))
    
        api(libs.gcs)
        api(libs.jsr305)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    errorprone {
        disabledChecks.addAll(
            "UnusedMethod", // 7 occurrences
        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":base-services"))
        api(project(":core-api"))
        api(project(":core"))
        api(project(":dependency-management"))
        api(project(":file-collections"))
        api(project(":stdlib-java-extensions"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top