Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,873 for annotation1 (0.2 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/InspectionSchemeFactory.java

                }
                propertyHandlers.add(propertyHandler);
            }
            for (Class<? extends Annotation> annotation : instantiationScheme.getInjectionAnnotations()) {
                if (!annotations.contains(annotation)) {
                    propertyHandlers.add(new NoOpPropertyAnnotationHandler(annotation));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/convert_test.go

    			},
    			expected: kubecontainer.ImageSpec{
    				Image:       "test",
    				Annotations: []kubecontainer.Annotation(nil),
    			},
    		},
    		{
    			input: &runtimeapi.Image{
    				Id: "test",
    				Spec: &runtimeapi.ImageSpec{
    					Annotations: nil,
    				},
    			},
    			expected: kubecontainer.ImageSpec{
    				Image:       "test",
    				Annotations: []kubecontainer.Annotation(nil),
    			},
    		},
    		{
    			input: &runtimeapi.Image{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/files/injection-template.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 May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. .idea/misc.xml

              <item index="3" class="java.lang.String" itemvalue="com.android.annotations.Nullable" />
              <item index="4" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
              <item index="5" class="java.lang.String" itemvalue="io.reactivex.annotations.Nullable" />
              <item index="6" class="java.lang.String" itemvalue="io.reactivex.rxjava3.annotations.Nullable" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/firAnnotationUtils.kt

    import java.lang.annotation.ElementType
    
    internal fun mapAnnotationParameters(annotation: FirAnnotation): Map<Name, FirExpression> {
        if (annotation is FirAnnotationCall && annotation.arguments.isEmpty()) return emptyMap()
    
        checkWithAttachment(annotation.resolved, { "By now the annotations argument mapping should have been resolved" }) {
            withFirEntry("annotation", annotation)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

            analysisSession: KaSession,
            annotations: KaAnnotationList,
            currentMetaAnnotations: Set<ClassId>?,
            indent: Int
        ) {
            appendLine("annotations: [".indented(indent))
            for (annotation in annotations) {
                appendLine(DebugSymbolRenderer().renderAnnotationApplication(analysisSession, annotation).indented(indent = indent + 2))
                if (currentMetaAnnotations != null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

        }
    
        private ImmutableMap<Class<? extends Annotation>, Annotation> collectRelevantAnnotations(AnnotatedElement element) {
            Annotation[] annotations = element.getDeclaredAnnotations();
            if (annotations.length == 0) {
                return ImmutableMap.of();
            }
            ImmutableMap.Builder<Class<? extends Annotation>, Annotation> relevantAnnotations = ImmutableMap.builderWithExpectedSize(annotations.length);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/injection-template.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 May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. istioctl/pkg/injector/injector-list_test.go

    	}{
    		{
    			name: "Injection disabled by annotation",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{
    						annotation.SidecarInject.Name: "false",
    					},
    				},
    			},
    			expected: true,
    		},
    		{
    			name: "Injection enabled by annotation",
    			pod: &corev1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Annotations: map[string]string{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 04:33:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/maturity/maturity.go

    	// this annotation is set by controller, don't alert on it.
    	annotation.GatewayControllerVersion.Name: true,
    
    	// this annotation is added automatically.
    	annotation.IoIstioRev.Name: true,
    
    	// TODO below are ambient related annotations that are not yet known to be stable.
    	// They are added automatically, and should not be alerted on.
    	// Delete these related annotations once they are stable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top