Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for AndSpec (0.15 sec)

  1. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/api/specs/AndSpec.java

     *
     * @param <T> The target type for this Spec
     */
    public class AndSpec<T> extends CompositeSpec<T> {
        public static final AndSpec<?> EMPTY = new AndSpec<>();
    
        public AndSpec() {
            super();
        }
    
        @SafeVarargs
        @SuppressWarnings("varargs")
        public AndSpec(Spec<? super T>... specs) {
            super(specs);
        }
    
        public AndSpec(Iterable<? extends Spec<? super T>> specs) {
            super(specs);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. subprojects/core/build.gradle.kts

        testFixturesApi(project(":base-services")) {
            because("test fixtures expose Action")
        }
        testFixturesApi(project(":base-services-groovy")) {
            because("test fixtures expose AndSpec")
        }
        testFixturesApi(project(":core-api")) {
            because("test fixtures expose Task")
        }
        testFixturesApi(project(":logging")) {
            because("test fixtures expose Logger")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.specs.AndSpec.and(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (AndSpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top