Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 419 for ElementType (0.14 sec)

  1. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/kotlin/src/main/java/org/gradle/junitplatform/Fast.java

    package org.gradle.junitplatform;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    import org.junit.jupiter.api.Tag;
    
    @Target({ ElementType.TYPE, ElementType.METHOD })
    @Retention(RetentionPolicy.RUNTIME)
    @Tag("fast")
    public @interface Fast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 358 bytes
    - Viewed (0)
  2. 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)
  3. guava/src/com/google/common/annotations/GwtIncompatible.java

     * {@code @GwtIncompatible} annotation in GWT itself</a>.
     *
     * @author Charles Fry
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
    @Documented
    @GwtCompatible
    public @interface GwtIncompatible {
      /**
       * Describes why the annotated element is incompatible with GWT. Since this is generally due to a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 16:29:08 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultPropertyFactory.java

        }
    
        @Override
        public <T> DefaultListProperty<T> listProperty(Class<T> elementType) {
            return new DefaultListProperty<>(propertyHost, elementType);
        }
    
        @Override
        public <T> DefaultSetProperty<T> setProperty(Class<T> elementType) {
            return new DefaultSetProperty<>(propertyHost, elementType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/annotations/J2ktIncompatible.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * The presence of this annotation on an API indicates that the method may not be used with
     * J2kt.
     *
     * @since 32.0.0
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.TYPE, ElementType.METHOD, ElementType.CONSTRUCTOR, ElementType.FIELD})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 26 22:04:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/applyconfiguration/internal/internal.go

      scalar: untyped
      list:
        elementType:
          namedType: __untyped_atomic_
        elementRelationship: atomic
      map:
        elementType:
          namedType: __untyped_atomic_
        elementRelationship: atomic
    - name: __untyped_deduced_
      scalar: untyped
      list:
        elementType:
          namedType: __untyped_atomic_
        elementRelationship: atomic
      map:
        elementType:
          namedType: __untyped_deduced_
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 10 10:01:37 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/CollectionSchema.java

        private final ModelType<E> elementType;
        private ModelSchema<E> elementTypeSchema;
    
        public CollectionSchema(ModelType<T> type, ModelType<E> elementType) {
            super(type);
            this.elementType = elementType;
        }
    
        public ModelType<E> getElementType() {
            return elementType;
        }
    
        public ModelSchema<E> getElementTypeSchema() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         *
         * @param elementType The type of objects for the container to contain.
         * @param <T> The type of objects for the container to contain.
         * @return The container. Never returns null.
         * @since 5.5
         */
        <T> NamedDomainObjectContainer<T> domainObjectContainer(Class<T> elementType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/ElementTypesAreNonnullByDefault.java

     * limitations under the License.
     */
    
    package com.google.common.collect.testing;
    
    import static java.lang.annotation.ElementType.FIELD;
    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.ElementType.PARAMETER;
    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 06 15:23:21 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top