Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 423 for analyzers (0.23 sec)

  1. releasenotes/notes/45644.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 04:04:36 UTC 2023
    - 171 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/inspect/inspect.go

    //		"golang.org/x/tools/go/ast/inspector"
    //	)
    //
    //	var Analyzer = &analysis.Analyzer{
    //		...
    //		Requires:       []*analysis.Analyzer{inspect.Analyzer},
    //	}
    //
    //	func run(pass *analysis.Pass) (interface{}, error) {
    //		inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    //		inspect.Preorder(nil, func(n ast.Node) {
    //			...
    //		})
    //		return nil, nil
    //	}
    package inspect
    
    import (
    	"reflect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top