Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 423 for analyzers (0.24 sec)

  1. pkg/config/analysis/analyzers/virtualservice/destinationhosts.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"
    )
    
    // DestinationHostAnalyzer checks the destination hosts associated with each virtual service
    type DestinationHostAnalyzer struct{}
    
    var _ analysis.Analyzer = &DestinationHostAnalyzer{}
    
    type hostAndSubset struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/envoyfilter/envoyfilter.go

    func (*EnvoyPatchAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "envoyfilter.EnvoyPatchAnalyzer",
    		Description: "Checks an envoyFilters ",
    		Inputs: []config.GroupVersionKind{
    			gvk.EnvoyFilter,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (s *EnvoyPatchAnalyzer) Analyze(c analysis.Context) {
    	// hold the filter names that have a proxyVersion set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/authz/authorizationpolicies.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"
    )
    
    // AuthorizationPoliciesAnalyzer checks the validity of authorization policies
    type AuthorizationPoliciesAnalyzer struct{}
    
    var (
    	_          analysis.Analyzer = &AuthorizationPoliciesAnalyzer{}
    	meshConfig *v1alpha1.MeshConfig
    )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vet/vetflag.go

    	// This part is additional to what (*Command).Usage does:
    	cmd := "go tool vet"
    	if vetTool != "" {
    		cmd = vetTool
    	}
    	fmt.Fprintf(os.Stderr, "Run '%s help' for a full list of flags and analyzers.\n", cmd)
    	fmt.Fprintf(os.Stderr, "Run '%s -help' for an overview.\n", cmd)
    
    	base.SetExitStatus(2)
    	base.Exit()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 14:42:39 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                for (GradleVersion version : versions) {
                    try {
                        DaemonLogsAnalyzer analyzer = new DaemonLogsAnalyzer(dir, version.getVersion());
                        analyzers.add(analyzer);
                        analyzer.killAll();
                    } catch (Exception e) {
                        getLogger().warn("Problem killing isolated daemons of Gradle version " + version + " in " + dir, e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    sharing rules.
    Specifically, it warns about attempts to pass a Go chan, map, func,
    or slice to C, either directly, or via a pointer, array, or struct.`
    
    var Analyzer = &analysis.Analyzer{
    	Name:             "cgocall",
    	Doc:              Doc,
    	URL:              "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/cgocall",
    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. istioctl/pkg/checkinject/checkinject.go

    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/writer/table"
    	analyzer_util "istio.io/istio/pkg/config/analysis/analyzers/util"
    )
    
    var labelPairs string
    
    func Cmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check-inject [<type>/]<name>[.<namespace>]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. tests/integration/pilot/analyze_test.go

    	t.Helper()
    
    	args := []string{"analyze"}
    	if ns != "" {
    		args = append(args, "--namespace", ns)
    	}
    	// Suppress some cluster-wide checks. This ensures we do not fail tests when running on clusters that trigger
    	// analyzers we didn't intended to test.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/configcontroller.go

    		}
    	}
    	return nil
    }
    
    // initInprocessAnalysisController spins up an instance of Galley which serves no purpose other than
    // running Analyzers for status updates.  The Status Updater will eventually need to allow input from istiod
    // to support config distribution status as well.
    func (s *Server) initInprocessAnalysisController(args *PilotArgs) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. istioctl/pkg/tag/tag.go

    	"k8s.io/client-go/rest"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/formatting"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/webhook"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/analysis/local"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
Back to top