Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 171 for analyzers (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/config/analysis/analyzers/injection/injection-image.go

    			gvk.Namespace,
    			gvk.Pod,
    			gvk.ConfigMap,
    			gvk.MeshConfig,
    			gvk.ProxyConfig,
    		},
    	}
    }
    
    // Analyze implements Analyzer.
    func (a *ImageAnalyzer) Analyze(c analysis.Context) {
    	proxyImageMap := make(map[string]string)
    
    	// when multiple injector configmaps exist, we may need to assess them respectively.
    	c.ForEach(gvk.ConfigMap, func(r *resource.Instance) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/sidecar/selector.go

    		Inputs: []config.GroupVersionKind{
    			gvk.Sidecar,
    			gvk.Pod,
    			gvk.Namespace,
    		},
    	}
    }
    
    // Analyze implements Analyzer
    func (a *SelectorAnalyzer) Analyze(c analysis.Context) {
    	podsToSidecars := make(map[resource.FullName][]*resource.Instance)
    	pods := make(map[resource.FullName]*resource.Instance)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. pilot/pkg/features/experimental.go

    		"PILOT_ENABLE_ANALYSIS",
    		false,
    		"If enabled, pilot will run istio analyzers and write analysis errors to the Status field of any "+
    			"Istio Resources",
    	).Get()
    
    	AnalysisInterval = func() time.Duration {
    		val, _ := env.Register(
    			"PILOT_ANALYSIS_INTERVAL",
    			10*time.Second,
    			"If analysis is enabled, pilot will run istio analyzers using this value as interval in seconds "+
    				"Istio Resources",
    		).Lookup()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                for (GradleVersion version : versions) {
                    try {
                        DaemonLogsAnalyzer analyzer = new DaemonLogsAnalyzer(dir, version.getVersion());
                        analyzers.add(analyzer);
                        analyzer.killAll();
                    } catch (Exception e) {
                        getLogger().warn("Problem killing isolated daemons of Gradle version " + version + " in " + dir, e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

     *
     * The project will be analyzed from the perspective of [useSiteKtElement]'s module, also called the use-site module.
     *
     * @see KaSession
     */
    public inline fun <R> analyze(
        useSiteKtElement: KtElement,
        action: KaSession.() -> R
    ): R =
        KaSessionProvider.getInstance(useSiteKtElement.project)
            .analyze(useSiteKtElement, action)
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top