Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,770 for annotation1 (0.16 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/DefaultInstantiatorFactoryTest.groovy

        }
    
        def "fails for unknown annotation"() {
            when:
            instantiatorFactory.injectScheme([Annotation3])
    
            then:
            def e = thrown(IllegalArgumentException)
            e.message == 'Annotation @Annotation3 is not a registered injection annotation.'
        }
    
        def "detects properties injected by annotation"() {
            def scheme = instantiatorFactory.injectScheme([Annotation1, Annotation2])
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/checksums_test.go

    				}
    			}
    
    			// Verify that we have added an annotation (and not overwritten them)
    			expectedAnnotationCount := 1 + len(test.configMap.Annotations)
    			if len(target.Annotations) != expectedAnnotationCount {
    				t.Errorf("unexpected number of annotations - got %d, expected %d", len(target.Annotations), expectedAnnotationCount)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/config/config.go

    	Deployment
    	Pod
    	Label
    	Annotation
    	Container
    )
    
    // SelectionSpec is a spec for pods that will be Include in the capture
    // archive. The format is:
    //
    //	Namespace1,Namespace2../Deployments/Pods/Label1,Label2.../Annotation1,Annotation2.../ContainerName1,ContainerName2...
    //
    // Namespace, pod and container names are pattern matching while labels
    // and annotations may have pattern in the values with exact match for keys.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			Labels: map[string]string{
    				NodeZoneLabel:              "zone1",
    				NodeRegionLabel:            "region1",
    				label.TopologySubzone.Name: "subzone1",
    			},
    			Annotations: map[string]string{
    				"annotation1": "foo",
    				"annotation2": "bar",
    			},
    			ManagedFields: []metav1.ManagedFieldsEntry{
    				{
    					Manager: "test",
    				},
    			},
    			OwnerReferences: []metav1.OwnerReference{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    		},
    	}
    
    	nsObject := &corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "test",
    			Labels: map[string]string{
    				"env": "test",
    				"foo": "demo",
    			},
    			Annotations: map[string]string{
    				"annotation1": "testAnnotation1",
    			},
    			Finalizers: []string{"f1"},
    		},
    		Spec: corev1.NamespaceSpec{
    			Finalizers: []corev1.FinalizerName{
    				corev1.FinalizerKubernetes,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/annotations/annotations.go

    // K8sAnalyzer checks for misplaced and invalid Istio annotations in K8s resources
    type K8sAnalyzer struct{}
    
    var istioAnnotations = annotation.AllResourceAnnotations()
    
    // Metadata implements analyzer.Analyzer
    func (*K8sAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "annotations.K8sAnalyzer",
    		Description: "Checks for misplaced and invalid Istio annotations in Kubernetes resources",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 13:14:31 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-barebone/src/org/jetbrains/kotlin/analysis/api/impl/barebone/annotations/annotations.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.barebone.annotations
    
    @RequiresOptIn
    annotation class PrivateForInline
    
    @RequiresOptIn
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 20 16:41:23 UTC 2021
    - 378 bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/annotations.go

    limitations under the License.
    */
    
    package autoscaling
    
    // MetricSpecsAnnotation is the annotation which holds non-CPU-utilization HPA metric
    // specs when converting the `Metrics` field from autoscaling/v2beta1
    const MetricSpecsAnnotation = "autoscaling.alpha.kubernetes.io/metrics"
    
    // MetricStatusesAnnotation is the annotation which holds non-CPU-utilization HPA metric
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 10 16:37:03 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/annotations.kt

     * excessive class loading on startup.
     *
     * The [KaCachedService] annotation itself is currently not enforced by any checkers or inspections, but it serves as an anchor for
     * documentation and improves discoverability of cached services.
     */
    @Target(allowedTargets = [AnnotationTarget.PROPERTY, AnnotationTarget.FIELD])
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/some-dir/nested-dir/bad-annotation-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: some-service
      annotations:
        # This annotation doesn't exist!
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 29 03:04:35 UTC 2020
    - 157 bytes
    - Viewed (0)
Back to top