Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,047 for annotation1 (0.15 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolInfoProvider.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KaPropertySymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.descriptors.annotations.AnnotationUseSiteTarget
    import org.jetbrains.kotlin.descriptors.annotations.KotlinTarget
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.resolve.deprecation.DeprecationInfo
    
    public abstract class KaSymbolInfoProvider : KaSessionComponent() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/AbstractInstrumentationProcessor.java

    import org.gradle.internal.instrumentation.processor.modelreader.impl.AnnotationUtils;
    
    import javax.annotation.Nonnull;
    import javax.annotation.processing.AbstractProcessor;
    import javax.annotation.processing.Messager;
    import javax.annotation.processing.RoundEnvironment;
    import javax.annotation.processing.SupportedSourceVersion;
    import javax.lang.model.SourceVersion;
    import javax.lang.model.element.AnnotationMirror;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:40 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

      static boolean isNullable(Parameter param) {
        return NULLNESS_ANNOTATION_READER.isNullable(param);
      }
    
      private static boolean containsNullable(Annotation[] annotations) {
        for (Annotation annotation : annotations) {
          if (NULLABLE_ANNOTATION_SIMPLE_NAMES.contains(annotation.annotationType().getSimpleName())) {
            return true;
          }
        }
        return false;
      }
    
      private boolean isIgnored(Member member) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDestructuringDeclarationSymbol.kt

        override val descriptor: CallableDescriptor? get() = null
    
        override val annotationsObject: Annotations by cached {
            val bindingContext = analysisContext.analyze(psi, AnalysisMode.PARTIAL)
            Annotations.create(
                psi.annotationEntries.mapNotNull { entry ->
                    bindingContext[BindingContext.ANNOTATION, entry]
                }
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

        - --domain
        - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
        - --proxyLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/logLevel` .Values.global.proxy.logLevel }}
        - --proxyComponentLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/componentLogLevel` .Values.global.proxy.componentLogLevel }}
        - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

        - --domain
        - $(POD_NAMESPACE).svc.{{ .Values.global.proxy.clusterDomain }}
        - --proxyLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/logLevel` .Values.global.proxy.logLevel }}
        - --proxyComponentLogLevel={{ annotation .ObjectMeta `sidecar.istio.io/componentLogLevel` .Values.global.proxy.componentLogLevel }}
        - --log_output_level={{ annotation .ObjectMeta `sidecar.istio.io/agentLogLevel` .Values.global.logging.level }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/AbstractModelRuleDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.model.internal.core.rule.describe;
    
    import javax.annotation.concurrent.ThreadSafe;
    
    import com.google.errorprone.annotations.FormatMethod;
    import com.google.errorprone.annotations.FormatString;
    import org.gradle.api.internal.cache.StringInterner;
    
    @ThreadSafe
    abstract class AbstractModelRuleDescriptor implements ModelRuleDescriptor {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pkg/kube/inject/inject.go

    		if cur == targetPort {
    			clearPrometheusAnnotations(pod)
    		}
    	}
    	delete(pod.Annotations, annotation.SidecarStatus.Name)
    
    	return pod
    }
    
    func injectionStatus(pod *corev1.Pod) *SidecarInjectionStatus {
    	var statusBytes []byte
    	if pod.ObjectMeta.Annotations != nil {
    		if value, ok := pod.ObjectMeta.Annotations[annotation.SidecarStatus.Name]; ok {
    			statusBytes = []byte(value)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiSpecificAnnotationOnDeclarationTest.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.impl.base.test.cases.annotations
    
    import org.jetbrains.kotlin.analysis.api.annotations.KaAnnotation
    import org.jetbrains.kotlin.analysis.api.symbols.DebugSymbolRenderer
    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaAnnotatedSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            if (!hasAnnotations) return false
    
            // Check the simple names of the Java annotations. While presence of such an annotation name does not prove deprecation, it is a
            // necessary condition for it. Type aliases are not a problem here: Java code cannot access Kotlin type aliases. (Currently,
            // deprecation annotation type aliases do not work in Kotlin, either, but this might change in the future.)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top