Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 423 for analyzers (0.15 sec)

  1. pkg/config/analysis/analyzers/destinationrule/ca-certificates.go

    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // CaCertificateAnalyzer checks if CaCertificate is set in case mode is SIMPLE/MUTUAL
    type CaCertificateAnalyzer struct{}
    
    var _ analysis.Analyzer = &CaCertificateAnalyzer{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/help.txt

    # Also make sure we print the short help line.
    ! go vet -h
    stderr 'usage: go vet .*'
    stderr 'Run ''go help vet'' for details.'
    stderr 'Run ''go tool vet help'' for a full list of flags and analyzers.'
    stderr 'Run ''go tool vet -help'' for an overview.'
    
    # Earlier versions of Go printed a large document here, instead of these two
    # lines.
    ! go test -h
    stderr 'usage: go test'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    		Inputs: []config.GroupVersionKind{
    			gvk.VirtualService,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (c *ConflictingMeshGatewayHostsAnalyzer) Analyze(ctx analysis.Context) {
    	hs := initMeshGatewayHosts(ctx)
    	reported := make(map[resource.FullName]bool)
    	for scopedFqdn, vsList := range hs {
    		scope, _ := scopedFqdn.GetScopeAndFqdn()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/virtualservice/jwtclaimroute.go

    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/jwt"
    )
    
    type JWTClaimRouteAnalyzer struct{}
    
    var _ analysis.Analyzer = &JWTClaimRouteAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/gateway/certificate.go

    		Description: "Checks a gateway certificate",
    		Inputs: []config.GroupVersionKind{
    			gvk.Gateway,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (gateway *CertificateAnalyzer) Analyze(context analysis.Context) {
    	context.ForEach(gvk.Gateway, func(resource *resource.Instance) bool {
    		gateway.analyzeDuplicateCertificate(resource, context, features.ScopeGatewayToNamespace)
    		return true
    	})
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/gateway/secret.go

    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    // SecretAnalyzer checks a gateway's referenced secrets for correctness
    type SecretAnalyzer struct{}
    
    var _ analysis.Analyzer = &SecretAnalyzer{}
    
    // Metadata implements analysis.Analyzer
    func (a *SecretAnalyzer) Metadata() analysis.Metadata {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/virtualservice/gateways.go

    func (s *GatewayAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "virtualservice.GatewayAnalyzer",
    		Description: "Checks the gateways associated with each virtual service",
    		Inputs: []config.GroupVersionKind{
    			gvk.Gateway,
    			gvk.VirtualService,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (s *GatewayAnalyzer) Analyze(c analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 01:28:52 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/extractdoc.go

    // which is the form expected by Analyzer.Doc.
    //
    // Example:
    //
    //	# Analyzer printf
    //
    //	printf: checks consistency of calls to printf
    //
    //	The printf analyzer checks consistency of calls to printf.
    //	Here is the complete description...
    //
    // This notation allows a single doc comment to provide documentation
    // for multiple analyzers, each in its own section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/testflag.go

    			}
    			f.flags = append(f.flags, "-"+arg)
    		}
    	}
    	if len(f.flags) > 1 && single != "" {
    		return fmt.Errorf("-vet does not accept %q in a list with other analyzers", single)
    	}
    	if len(f.flags) > 1 && single != "" {
    		return fmt.Errorf("-vet does not accept %q in a list with other analyzers", single)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    			gvk.Gateway,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (s *ConflictingGatewayAnalyzer) Analyze(c analysis.Context) {
    	gwConflictingMap := initGatewaysMap(c)
    	c.ForEach(gvk.Gateway, func(r *resource.Instance) bool {
    		s.analyzeGateway(r, c, gwConflictingMap)
    		return true
    	})
    }
    
    func (*ConflictingGatewayAnalyzer) analyzeGateway(r *resource.Instance, c analysis.Context,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top