Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 234 for annotation1 (0.68 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Now that you have seen some of the input and output annotations in practice, let’s take a look at all the annotations available to you and when you should use them. The table below lists the available annotations and the corresponding property type you can use with each one.
    
    [[table:incremental_build_annotations]]
    .Incremental build property type annotations
    [cols="a,a,a", options="header"]
    |===
    | Annotation
    | Expected property type
    | Description
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Empty(t, pod.Annotations)
    			assert.Nil(t, pod.Spec.Containers[0].SecurityContext)
    		},
    	}, {
    		description: "Ignore annotations on windows",
    		pod: &api.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Annotations: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    for (Class<? extends Annotation> annotation : lifecycleHandler.getAnnotations()) {
                        boolean implementationHasAnnotation = inspector.hasAnnotation(instance.getClass(), annotation);
                        boolean declaredWithAnnotation = inspector.hasAnnotation(serviceType, annotation);
                        if (implementationHasAnnotation && !declaredWithAnnotation) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

            private final Class<? extends Annotation> annotation;
    
            public DisabledAnnotationValidator(Class<? extends Annotation> annotation) {
                this.annotation = annotation;
            }
    
            @Override
            public void validateMethod(Method method, PropertyAccessorType accessorType) {
                if (method.getAnnotation(annotation) != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(annotation.number(), equalTo(1));
            assertThat(annotation.numbers(), equalTo(new int[]{1, 2}));
            assertThat(annotation.clazz().equals(Integer.class), equalTo(true));
            assertThat(annotation.classes(), equalTo(new Class<?>[]{Integer.class}));
            assertThat(annotation.annotation().value(), equalTo("nested"));
            assertThat(annotation.annotations()[0].value(), equalTo("nested array"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // K8s annotations for pods.
      //
      // See: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
      google.protobuf.Struct podAnnotations = 30 [deprecated = true];
    
      // K8s annotations for the Service.
      //
      // See: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
      google.protobuf.Struct serviceAnnotations = 37;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    func (f *FakeAttributes) GetAnnotations(_ auditinternal.Level) map[string]string {
    	f.mutex.Lock()
    	defer f.mutex.Unlock()
    	annotations := make(map[string]string, len(f.annotations))
    	for k, v := range f.annotations {
    		annotations[k] = v
    	}
    	return annotations
    }
    
    type warningRecorder struct {
    	sync.Mutex
    	warnings sets.Set[string]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/types.gen.go

    			Meta: config.Meta{
    				GroupVersionKind:  gvk.AuthorizationPolicy,
    				Name:              obj.Name,
    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    				Annotations:       obj.Annotations,
    				ResourceVersion:   obj.ResourceVersion,
    				CreationTimestamp: obj.CreationTimestamp.Time,
    				OwnerReferences:   obj.OwnerReferences,
    				UID:               string(obj.UID),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    
    			actualAnnotation, ok := actualEndpoints.Annotations[v1.EndpointsOverCapacity]
    			if tc.expectedAnnotation {
    				if !ok {
    					t.Errorf("Expected EndpointsOverCapacity annotation to be set")
    				} else if actualAnnotation != "truncated" {
    					t.Errorf("Expected EndpointsOverCapacity annotation to be 'truncated', got %s", actualAnnotation)
    				}
    			} else {
    				if ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    }
    
    func generateWorkloadEntry(ip, name, namespace, saName string, labels map[string]string, annotations map[string]string) *apiv1alpha3.WorkloadEntry {
    	return &apiv1alpha3.WorkloadEntry{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:        name,
    			Labels:      labels,
    			Annotations: annotations,
    			Namespace:   namespace,
    		},
    		Spec: v1alpha3.WorkloadEntry{
    			Address:        ip,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top