Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 419 for ElementType (0.19 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/validation/ValidationProblem.java

     * a service available globally in the embedded integration test runner only.
     *
     * @see ValidationServicesFixture
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface ValidationProblem {
        Severity value() default Severity.WARNING;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ ElementType.TYPE,
            ElementType.FIELD,
            ElementType.METHOD,
            ElementType.PARAMETER,
            ElementType.CONSTRUCTOR,
            ElementType.LOCAL_VARIABLE,
            ElementType.ANNOTATION_TYPE,
            ElementType.PACKAGE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.TYPE, ElementType.METHOD, ElementType.FIELD])
    @interface Irrelevant {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Ignored {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Ignored2 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/archives/TestReproducibleArchives.groovy

     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.TYPE])
    @ExtensionAnnotation(ReproducibleArchivesTestExtension)
    @Inherited
    @interface TestReproducibleArchives {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RequiredFeature.java

     * that the feature value is the one defined by {@link #value()}.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Repeatable(RequiredFeatures.class)
    @Inherited
    public @interface RequiredFeature {
        String feature();
        String value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DocumentResolution.kt

                val elementType: DataType
    
                data class ConfiguringElementResolved(
                    override val elementType: DataClass
                ) : SuccessfulElementResolution
    
                data class ContainerElementResolved(
                    override val elementType: DataType,
                    val elementFactoryFunction: SchemaMemberFunction,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/IntegrationTest.groovy

     * we tag all non-spock integration tests and use `includeTags(none() | SomeTag)` to make
     * sure spock engine tests are executed.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.TYPE, ElementType.METHOD])
    @Tag("org.gradle.test.fixtures.IntegrationTest")
    @interface IntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/Requires.java

     *
     * <p>
     * Combinations are pre-defined. See {@link RequiresExtension} for more info how to introduce a new combination.
     *
     * @see RequiresExtension
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.TYPE})
    @Inherited
    @ExtensionAnnotation(RequiresExtension.class)
    public @interface Requires {
    
        /**
         * The list of preconditions, which will be checked by {@link RequiresExtension}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelMapStrategy.java

                }
    
                ModelType<?> elementType = typeVariables.get(0);
                extractionContext.found(getModelSchema(extractionContext, elementType));
            }
        }
    
        private <T, E> ModelSchema<T> getModelSchema(ModelSchemaExtractionContext<T> extractionContext, ModelType<E> elementType) {
            final ModelMapSchema<T, E> schema = new ModelMapSchema<T, E>(extractionContext.getType(), elementType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/OutputDirectories.java

     * Task output caching will be disabled if the outputs contain file trees.
     * </p>
     */
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface OutputDirectories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 29 11:24:35 UTC 2018
    - 1.8K bytes
    - Viewed (0)
Back to top