Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for fanno (0.04 sec)

  1. istioctl/pkg/describe/describe_test.go

    	}
    }
    
    func TestGetRevisionFromPodAnnotation(t *testing.T) {
    	cases := []struct {
    		anno klabels.Set
    
    		expected string
    	}{
    		{
    			anno: klabels.Set{
    				apiannotation.SidecarStatus.Name: "",
    			},
    			expected: "",
    		},
    		{
    			anno:     klabels.Set{},
    			expected: "",
    		},
    		{
    			anno: klabels.Set{
    				apiannotation.SidecarStatus.Name: `
    				{
    					"initContainers": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            source api: ["""
                package annotations;
                import java.lang.annotation.*;
                @Retention(RetentionPolicy.RUNTIME)
                @Target(ElementType.PACKAGE)
                public @interface Anno {}
            """]
            def packageFile = file("api/src/main/${language.name}/foo/package-info.${language.name}")
            packageFile.text = """@Deprecated package foo;"""
            source(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  3. pkg/bootstrap/instance_test.go

    func createEnv(t *testing.T, labels map[string]string, anno map[string]string) (map[string]string, []string) {
    	merged := map[string]string{}
    	mergeMap(merged, labels)
    	mergeMap(merged, anno)
    
    	envs := make([]string, 0)
    
    	if labels != nil {
    		envs = append(envs, encodeAsJSON(t, labels, "LABELS"))
    	}
    
    	if anno != nil {
    		envs = append(envs, encodeAsJSON(t, anno, "ANNOTATIONS"))
    	}
    	return merged, envs
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source("""
                package annotations;
                import java.lang.annotation.*;
                @Retention(RetentionPolicy.RUNTIME)
                @Target(ElementType.PACKAGE)
                public @interface Anno {}
            """)
            def packageFile = file("src/main/${languageName}/foo/package-info.${languageName}")
            packageFile.text = """@Deprecated package foo;"""
            source(
                "package foo; class A {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

        CLASS ANNOTATION_CLASS name:Anno modality:OPEN visibility:public superTypes:[kotlin.Annotation]
          $this: VALUE_PARAMETER INSTANCE_RECEIVER name:<this> type:<root>.Anno
          CONSTRUCTOR visibility:public <> () returnType:<root>.Anno [primary]
            BLOCK_BODY
              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in kotlin.Any'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. pkg/kube/inject/webhook.go

    	for _, c := range cl {
    		if c.Name == name {
    			return true
    		}
    	}
    	return false
    }
    
    func enablePrometheusMerge(mesh *meshconfig.MeshConfig, anno map[string]string) bool {
    	// If annotation is present, we look there first
    	if val, f := anno[annotation.PrometheusMergeMetrics.Name]; f {
    		bval, err := strconv.ParseBool(val)
    		if err != nil {
    			// This shouldn't happen since we validate earlier in the code
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.AlphaAnnotation, "Pod invalid-annotations"},
    			{msg.AlphaAnnotation, "Service httpbin"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    			{msg.AlphaAnnotation, "Pod anno-not-set-by-default"},
    		},
    		skipAll: true,
    	},
    	{
    		name:       "deprecation",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

                @Target(ElementType.PACKAGE)
                public @interface Anno {
                       int value();
                }
                """
            ]
            def packageFile = file("impl/src/main/${languageName}/foo/package-info.${languageName}")
            packageFile.text = """@Deprecated @annotations.Anno(constant.Const.X + 1) package foo;"""
            source impl: [
                "package foo; class A {}",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook_test.go

    func BenchmarkInjectServePC15(b *testing.B) {
    	benchmarkInjectServe(15, b)
    }
    
    func TestEnablePrometheusAggregation(t *testing.T) {
    	tests := []struct {
    		name string
    		mesh *meshconfig.MeshConfig
    		anno map[string]string
    		want bool
    	}{
    		{
    			"no settings",
    			nil,
    			nil,
    			true,
    		},
    		{
    			"mesh on",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  10. pkg/controller/volume/persistentvolume/pv_controller_base.go

    	}
    
    	// The volume from method args can be pointing to watcher cache. We must not
    	// modify these, therefore create a copy.
    	claimClone := claim.DeepCopy()
    	// TODO: remove the beta storage provisioner anno after the deprecation period
    	logger := klog.FromContext(ctx)
    	metav1.SetMetaDataAnnotation(&claimClone.ObjectMeta, storagehelpers.AnnBetaStorageProvisioner, provisionerName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 29.5K bytes
    - Viewed (0)
Back to top