Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,873 for annotation1 (0.35 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotated.kt

    /**
     * A list of annotations applied.
     *
     * To check if annotation is present, please use [hasAnnotation].
     *
     * @see [KaAnnotationList.annotations]
     */
    @Deprecated("Use the 'annotations' the member property instead.")
    public val KaAnnotated.annotations: List<KaAnnotation>
        get() = annotations
    
    @Deprecated("Use 'annotations' instead.", replaceWith = ReplaceWith("annotations"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

            get() = hasArguments
    
        /**
         * An index of the annotation in an owner. `null` when annotation is used as an argument of other annotations
         */
        public val index: Int?
    
        /**
         * A list of explicitly provided annotation values.
         */
        public val arguments: List<KaNamedAnnotationValue>
    
        /**
         * An annotation constructor symbol.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/KtRendererAnnotationsFilter.kt

        public fun filter(analysisSession: KaSession, annotation: KaAnnotation, owner: KaAnnotated): Boolean
    
        public infix fun and(other: KaRendererAnnotationsFilter): KaRendererAnnotationsFilter =
            KaRendererAnnotationsFilter filter@{ annotation, owner ->
                val analysisSession = this@filter
                filter(analysisSession, annotation, owner) && other.filter(analysisSession, annotation, owner)
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationQualifierRenderer.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.base.annotations.renderers
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotated
    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotation
    import org.jetbrains.kotlin.analysis.api.renderer.base.annotations.KaAnnotationRenderer
    import org.jetbrains.kotlin.analysis.utils.printer.PrettyPrinter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

    {{- define "resources"  }}
      {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPULimit`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemoryLimit`) }}
        {{- if or (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyCPU`) (isset .ObjectMeta.Annotations `sidecar.istio.io/proxyMemory`) }}
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/claiminfo.go

    	info.annotations[pluginName] = annotations
    
    	return nil
    }
    
    // annotationsAsList returns container annotations as a single list.
    func (info *ClaimInfo) annotationsAsList() []kubecontainer.Annotation {
    	var lst []kubecontainer.Annotation
    	for _, v := range info.annotations {
    		lst = append(lst, v...)
    	}
    	return lst
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * Each property can have at most one annotation per category.
     * Validation failures with a given type can be visited using {@link TypeAnnotationMetadata#visitValidationFailures(TypeValidationContext)}.
     * </p>
     *
     * <strong>Property annotation inheritance</strong>
     *
     * <p>
     * Property annotations are inherited from super-types on a per-category basis: subtypes can override each super-type annotation category separately.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/DefaultTypeMetadataStore.java

    import org.gradle.cache.internal.CrossBuildInMemoryCacheFactory;
    import org.gradle.internal.reflect.annotations.AnnotationCategory;
    import org.gradle.internal.reflect.annotations.PropertyAnnotationMetadata;
    import org.gradle.internal.reflect.annotations.TypeAnnotationMetadata;
    import org.gradle.internal.reflect.annotations.TypeAnnotationMetadataStore;
    import org.gradle.internal.reflect.validation.ReplayingTypeValidationContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pilot/cmd/pilot-agent/config/config.go

    // Apply any overrides to proxy config from annotations
    func applyAnnotations(config *meshconfig.ProxyConfig, annos map[string]string) *meshconfig.ProxyConfig {
    	if v, f := annos[annotation.SidecarDiscoveryAddress.Name]; f {
    		config.DiscoveryAddress = v
    	}
    	if v, f := annos[annotation.SidecarStatusPort.Name]; f {
    		p, err := strconv.Atoi(v)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

     */
    package org.apache.maven.api.plugin.annotations;
    
    import java.lang.annotation.Documented;
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    import org.apache.maven.api.annotations.Experimental;
    import org.apache.maven.api.annotations.Nonnull;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top