Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 346 for analyzers (0.2 sec)

  1. src/cmd/go/testdata/script/test_vet.txt

    # Test issue #47309
    ! go test -vet=bools,xyz ./vetall/...
    stderr '-vet argument must be a supported analyzer'
    
    # Test with a single analyzer
    ! go test -vet=httpresponse ./vetall/...
    stderr 'using resp before checking for errors'
    
    # Test with a list of analyzers
    go test -vet=atomic,bools,nilfunc ./vetall/...
    stdout 'm/vetall.*\[no tests to run\]'
    
    # Test issue #22890
    go test m/vetcycle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 27 20:14:44 UTC 2021
    - 2.1K 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. 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)
  10. README.md

    For search/index analyzer, if [doc.json](https://github.com/codelibs/fess/blob/master/src/main/resources/fess_indices/fess/doc.json) contains lang\_[lang] for your language, please modify the analyzer for your language. For more details about Analyzers, see the [Elasticsearch documentation](https://www.elastic.co/guide/en/elasticsearch/reference/current/analysis-analyzers.html).
    
    We welcome pull requests for your language.
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Feb 25 00:40:07 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top