Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 419 for ElementType (0.21 sec)

  1. guava/src/com/google/common/xml/ElementTypesAreNonnullByDefault.java

     * limitations under the License.
     */
    
    package com.google.common.xml;
    
    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: Wed Apr 14 22:01:50 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/ForExternalUse.java

     * <p>
     * This annotations should only be applied to Gradle public API declarations.
     *
     * @see AllowUsingApiForExternalUse
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
    public @interface ForExternalUse {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. android/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)
  5. android/guava/src/com/google/common/annotations/Beta.java

     *
     * @author Kevin Bourrillion
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({
      ElementType.ANNOTATION_TYPE,
      ElementType.CONSTRUCTOR,
      ElementType.FIELD,
      ElementType.METHOD,
      ElementType.TYPE
    })
    @Documented
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/annotations/Beta.java

     *
     * @author Kevin Bourrillion
     */
    @Retention(RetentionPolicy.CLASS)
    @Target({
      ElementType.ANNOTATION_TYPE,
      ElementType.CONSTRUCTOR,
      ElementType.FIELD,
      ElementType.METHOD,
      ElementType.TYPE
    })
    @Documented
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/InterceptJvmCalls.java

     */
    
    package org.gradle.internal.instrumentation.api.annotations;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
    public @interface InterceptJvmCalls {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 974 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. subprojects/core/src/main/java/org/gradle/api/internal/model/InstantiatorBackedObjectFactory.java

        }
    
        @Override
        public <T> ListProperty<T> listProperty(Class<T> elementType) {
            return new DefaultListProperty<>(PropertyHost.NO_OP, elementType);
        }
    
        @Override
        public <T> SetProperty<T> setProperty(Class<T> elementType) {
            return broken();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/SearchPath.java

     * limitations under the License.
     */
    
    package org.gradle.internal.properties.annotations;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.METHOD, ElementType.FIELD})
    @Retention(RetentionPolicy.RUNTIME)
    @interface SearchPath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 943 bytes
    - Viewed (0)
Back to top