Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 491 for analyzers (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/go/internal/test/testflag.go

    			}
    			f.flags = append(f.flags, "-"+arg)
    		}
    	}
    	if len(f.flags) > 1 && single != "" {
    		return fmt.Errorf("-vet does not accept %q in a list with other analyzers", single)
    	}
    	if len(f.flags) > 1 && single != "" {
    		return fmt.Errorf("-vet does not accept %q in a list with other analyzers", single)
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/config/analysis/analyzers/deployment/services.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/constants"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    type ServiceAssociationAnalyzer struct{}
    
    var _ analysis.Analyzer = &ServiceAssociationAnalyzer{}
    
    type (
    	PortMap             map[int32]ProtocolMap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/injection/injection.go

    )
    
    // Metadata implements Analyzer
    func (a *Analyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    		Name:        "injection.Analyzer",
    		Description: "Checks conditions related to Istio sidecar injection",
    		Inputs: []config.GroupVersionKind{
    			gvk.Namespace,
    			gvk.Pod,
    			gvk.ConfigMap,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *Analyzer) Analyze(c analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. pom.xml

    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>${junit.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.codelibs</groupId>
    			<artifactId>analyzers</artifactId>
    			<version>${lucene.version}.0</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.lucene</groupId>
    			<artifactId>lucene-analysis-kuromoji</artifactId>
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu May 30 06:30:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/gateway/gateway.go

    			gvk.Gateway,
    			gvk.Pod,
    			gvk.Service,
    		},
    	}
    }
    
    // Analyze implements analysis.Analyzer
    func (s *IngressGatewayPortAnalyzer) Analyze(c analysis.Context) {
    	c.ForEach(gvk.Gateway, func(r *resource.Instance) bool {
    		s.analyzeGateway(r, c)
    		return true
    	})
    }
    
    func (*IngressGatewayPortAnalyzer) analyzeGateway(r *resource.Instance, c analysis.Context) {
    	gw := r.Message.(*v1alpha3.Gateway)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top