Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 491 for analyzers (0.17 sec)

  1. pkg/config/analysis/analyzers/analyzers_test.go

    	schemaValidation "istio.io/istio/pkg/config/analysis/analyzers/schema"
    	"istio.io/istio/pkg/config/analysis/analyzers/service"
    	"istio.io/istio/pkg/config/analysis/analyzers/serviceentry"
    	"istio.io/istio/pkg/config/analysis/analyzers/sidecar"
    	"istio.io/istio/pkg/config/analysis/analyzers/telemetry"
    	"istio.io/istio/pkg/config/analysis/analyzers/virtualservice"
    	"istio.io/istio/pkg/config/analysis/analyzers/webhook"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/vet_flags.txt

    env GO111MODULE=on
    
    # Issue 35837: "go vet -<analyzer> <std package>" should use the requested
    # analyzers, not the default analyzers for 'go test'.
    go vet -n -buildtags=false runtime
    stderr '-buildtags=false'
    ! stderr '-unsafeptr=false'
    
    # Issue 37030: "go vet <std package>" without other flags should disable the
    # unsafeptr check by default.
    go vet -n runtime
    stderr '-unsafeptr=false'
    ! stderr '-unreachable=false'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/incluster/controller.go

    ) (*Controller, error) {
    	analyzer := analyzers.AllCombined()
    	all := kuberesource.ConvertInputsToSchemas(analyzer.Metadata().Inputs)
    
    	ia := local.NewIstiodAnalyzer(analyzer, "", resource.Namespace(namespace), func(name config.GroupVersionKind) {})
    	ia.AddSource(rwConfigStore)
    
    	// Filter out configs watched by rwConfigStore so we don't watch multiple times
    	store := crdclient.NewForSchemas(kubeClient,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// package that contains parse or type errors.
    	// The Pass.TypeErrors field may consequently be non-empty.
    	RunDespiteErrors bool
    
    	// Requires is a set of analyzers that must run successfully
    	// before this one on a given package. This analyzer may inspect
    	// the outputs produced by each analyzer in Requires.
    	// The graph over analyzers implied by Requires edges must be acyclic.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/multicluster_analyzers_test.go

    	cluster2InputFiles []string
    	analyzer           analysis.Analyzer
    	expected           []message
    }
    
    var mcTestGrid = []mcTestCase{
    	{
    		name: "InconsistentMultiClusterService",
    		cluster1InputFiles: []string{
    			"testdata/multicluster/inconsistent-service-1.yaml",
    		},
    		cluster2InputFiles: []string{
    			"testdata/multicluster/inconsistent-service-2.yaml",
    		},
    		analyzer: &multicluster.ServiceAnalyzer{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. tests/fuzz/analyzer_fuzzer.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers"
    	"istio.io/istio/pkg/config/analysis/local"
    	"istio.io/istio/pkg/config/analysis/scope"
    	"istio.io/istio/pkg/log"
    )
    
    var availableAnalyzers = analyzers.All()
    
    // createRandomConfigFile creates a single fuzzed config file
    func createRandomConfigFile(f *fuzz.ConsumeFuzzer) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_bench_test.go

     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
    */
    
    package analyzers
    
    import (
    	"fmt"
    	"testing"
    
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/service/portname.go

    		Name:        "service.PortNameAnalyzer",
    		Description: "Checks the port names associated with each service",
    		Inputs: []config.GroupVersionKind{
    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (s *PortNameAnalyzer) Analyze(c analysis.Context) {
    	c.ForEach(gvk.Service, func(r *resource.Instance) bool {
    		// Skip port name check for istio control plane
    		if util.IsIstioControlPlane(r) {
    			return true
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 15 14:45:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/config/analysis/metadata.go

    // limitations under the License.
    
    package analysis
    
    import "istio.io/istio/pkg/config"
    
    // Metadata represents metadata for an analyzer
    type Metadata struct {
    	Name string
    	// Description is a short explanation of what the analyzer checks. This
    	// field is displayed to users when --list-analyzers is called.
    	Description string
    	Inputs      []config.GroupVersionKind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 923 bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/annotations/annotations.go

    			gvk.Namespace,
    			gvk.Service,
    			gvk.Pod,
    			gvk.Deployment,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (fa *K8sAnalyzer) Analyze(ctx analysis.Context) {
    	ctx.ForEach(gvk.Namespace, func(r *resource.Instance) bool {
    		fa.allowAnnotations(r, ctx, "Namespace", gvk.Namespace)
    		return true
    	})
    	ctx.ForEach(gvk.Service, func(r *resource.Instance) bool {
    		fa.allowAnnotations(r, ctx, "Service", gvk.Service)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 25 13:14:31 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top