Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 346 for analyzers (0.21 sec)

  1. tools/bug-report/pkg/content/content.go

    	cancel := make(chan struct{})
    	result, err := sa.Analyze(cancel)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(result.SkippedAnalyzers) > 0 {
    		log.Infof("Skipped analyzers:")
    		for _, a := range result.SkippedAnalyzers {
    			log.Infof("\t: %s", a)
    		}
    	}
    	if len(result.ExecutedAnalyzers) > 0 {
    		log.Infof("Executed analyzers:")
    		for _, a := range result.ExecutedAnalyzers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/serviceentry/protocoladdresses.go

    	"istio.io/istio/pkg/config"
    	"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"
    )
    
    type ProtocolAddressesAnalyzer struct{}
    
    var _ analysis.Analyzer = &ProtocolAddressesAnalyzer{}
    
    func (serviceEntry *ProtocolAddressesAnalyzer) Metadata() analysis.Metadata {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pkg/test/framework/features/README.md

    ```yaml
        usability:
          observability:
            status:
          analyzers:
            virtualservice:
    ```
    
    will allow you to label a test with:
    
    ```go
        "usability.observability.status.exist-by-default"
        "usability.analyzers.virtualservice"
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/virtualservice/destinationrules.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"
    )
    
    // DestinationRuleAnalyzer checks the destination rules associated with each virtual service
    type DestinationRuleAnalyzer struct{}
    
    var _ analysis.Analyzer = &DestinationRuleAnalyzer{}
    
    // Metadata implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_generated_main.txt

    # Tests that the generated test main file has a generated code comment.
    # This is needed by analyzers that access source files through 'go list'.
    # Verifies golang.org/issue/31971.
    # TODO(jayconrod): This test is brittle. We should write _testmain.go as
    # a build action instead of with an ad-hoc WriteFile call
    # in internal/test/test.go. Then we could just grep 'go get -n'.
    go test x_test.go
    
    -- x_test.go --
    package x
    
    import (
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 924 bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/multicluster/meshnetworks.go

    	provider.External,
    }
    
    // Metadata implements Analyzer
    func (s *MeshNetworksAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "meshnetworks.MeshNetworksAnalyzer",
    		Description: "Check the validity of MeshNetworks in the cluster",
    		Inputs: []config.GroupVersionKind{
    			gvk.MeshNetworks,
    			gvk.Secret,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/telemetry/util.go

    // limitations under the License.
    package telemetry
    
    import (
    	"sort"
    
    	"istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    func getNames(entries []*resource.Instance) []string {
    	names := make([]string, 0, len(entries))
    	for _, rs := range entries {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/telemetry/selector.go

    		Inputs: []config.GroupVersionKind{
    			gvk.Telemetry,
    			gvk.Pod,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *SelectorAnalyzer) Analyze(c analysis.Context) {
    	podsToTelemetries := make(map[resource.FullName][]*resource.Instance)
    
    	// This is using an unindexed approach for matching selectors.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/analyzers/deployment/pod.go

    	"istio.io/istio/pkg/config"
    	"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"
    )
    
    type ApplicationUIDAnalyzer struct{}
    
    var _ analysis.Analyzer = &ApplicationUIDAnalyzer{}
    
    const (
    	UserID = int64(1337)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. 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)
Back to top