Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for ElementType (0.16 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Short {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Tint {
        String value()
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    @interface Ignored {
    }
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.FIELD])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                        return new ListModelView<E>(modelNode.getPath(), elementType, modelNode, ruleDescriptor, readOnly, mutable);
                    }
                };
            }
    
            public static <E> ScalarCollectionModelProjection<E, Set<E>> forSet(final ModelType<E> elementType, final boolean readOnly) {
                return new ScalarCollectionModelProjection<E, Set<E>>(ModelTypes.set(elementType)) {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

         */
        <T> DomainObjectSet<T> newDomainObjectSet(Class<T> elementType);
    
        <T> NamedDomainObjectSet<T> newNamedDomainObjectSet(Class<T> elementType);
    
        <T> NamedDomainObjectList<T> newNamedDomainObjectList(Class<T> elementType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/UsedByScanPlugin.java

     * test-retry or the test-distribution plugin clarify their usage in the {@link #value}.
     * property.
     *
     * @since 4.0
     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.METHOD, ElementType.TYPE, ElementType.FIELD, ElementType.CONSTRUCTOR})
    public @interface UsedByScanPlugin {
    
        /**
         * Any clarifying comments about how it is used.
         */
        String value() default "";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/NonNullApi.java

     * Subpackages do not inherit nullability rules and must be annotated.
     *
     * @since 4.2
     */
    @Target({ElementType.TYPE, ElementType.PACKAGE})
    @org.jetbrains.annotations.NotNull
    @Nonnull
    @TypeQualifierDefault({ElementType.METHOD, ElementType.PARAMETER})
    @Documented
    @Retention(RetentionPolicy.RUNTIME)
    public @interface NonNullApi {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/Incubating.java

        ElementType.CONSTRUCTOR,
        ElementType.FIELD,
        ElementType.METHOD
    })
    public @interface Incubating {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelSet.java

        public NodeBackedModelSet(ModelType<?> publicType, ModelType<T> elementType, ModelRuleDescriptor descriptor, MutableModelNode modelNode, ModelViewState state, ChildNodeInitializerStrategy<T> creatorStrategy) {
            this.publicType = publicType;
            this.elementType = elementType;
            this.elementTypeReference = ModelReference.of(elementType);
            this.descriptor = descriptor;
            this.modelNode = modelNode;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForIsolatedProjects.groovy

    import org.spockframework.runtime.extension.ExtensionAnnotation
    
    import java.lang.annotation.ElementType
    import java.lang.annotation.Retention
    import java.lang.annotation.RetentionPolicy
    import java.lang.annotation.Target
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.METHOD, ElementType.TYPE])
    @ExtensionAnnotation(ToBeFixedForIsolatedProjectsExtension.class)
    public @interface ToBeFixedForIsolatedProjects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 13:10:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Restricted.java

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.model.annotations;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:57:00 UTC 2024
    - 1005 bytes
    - Viewed (0)
  10. 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)
Back to top