Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DeprecatedAnnotation (1.13 sec)

  1. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

        def jApiMethod = Stub(JApiMethod)
        def jApiField = Stub(JApiField) // represents fields and enum literals
        def jApiConstructor = Stub(JApiConstructor)
        def incubatingAnnotation = Stub(JApiAnnotation)
        def deprecatedAnnotation = Stub(JApiAnnotation)
        def overrideAnnotation = Stub(JApiAnnotation)
        def injectAnnotation = Stub(JApiAnnotation)
    
        def setup() {
            new File(tmp, "org/gradle/api").mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
  2. pkg/config/analysis/msg/messages.gen.go

    	ServiceEntryAddressesRequired = diag.NewMessageType(diag.Warning, "IST0134", "ServiceEntry addresses are required for this protocol.")
    
    	// DeprecatedAnnotation defines a diag.MessageType for message "DeprecatedAnnotation".
    	// Description: A resource is using a deprecated Istio annotation.
    	DeprecatedAnnotation = diag.NewMessageType(diag.Info, "IST0135", "Annotation %q has been deprecated%s and may not work in future Istio versions.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/msg/messages.yaml

        template: "ServiceEntry addresses are required for this protocol."
    
      - name: "DeprecatedAnnotation"
        code: IST0135
        level: Info
        description: "A resource is using a deprecated Istio annotation."
        template: "Annotation %q has been deprecated%s and may not work in future Istio versions."
        args:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.InvalidAnnotation, "Pod invalid-annotations"},
    			{msg.MisplacedAnnotation, "Pod grafana-test"},
    			{msg.MisplacedAnnotation, "Deployment fortio-deploy"},
    			{msg.MisplacedAnnotation, "Namespace staging"},
    			{msg.DeprecatedAnnotation, "Deployment fortio-deploy"},
    		},
    	},
    	{
    		name: "alpha",
    		inputFiles: []string{
    			"testdata/misannotated.yaml",
    		},
    		analyzer: &maturity.AlphaAnalyzer{},
    		expected: []message{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top