Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 171 for analyzers (0.17 sec)

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

    	"istio.io/istio/pkg/config/schema/gvk"
    )
    
    type ExternalControlPlaneAnalyzer struct{}
    
    // Compile-time check that this Analyzer correctly implements the interface
    var _ analysis.Analyzer = &ExternalControlPlaneAnalyzer{}
    
    // Metadata implements Analyzer
    func (s *ExternalControlPlaneAnalyzer) Metadata() analysis.Metadata {
    	return analysis.Metadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package printf defines an Analyzer that checks consistency
    // of Printf format strings and arguments.
    //
    // # Analyzer printf
    //
    // printf: check consistency of Printf format strings and arguments
    //
    // The check applies to calls of the formatting functions such as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      // Create symbol table for module.
      SymbolTableCollection symbol_table_collection;
      symbol_table_collection.getSymbolTable(module);
      // Analyze all regions for backtracking info.
      detail::BacktrackAnalysis backtrack_analysis(module, symbol_table_collection);
    
      // Analyze each function.
      for (auto func : module.getOps<func::FuncOp>())
        this->info_map_.try_emplace(func, func, backtrack_analysis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/webhook/webhook.go

    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type Analyzer struct {
    	SkipServiceCheck             bool
    	SkipDefaultRevisionedWebhook bool
    }
    
    var _ analysis.Analyzer = &Analyzer{}
    
    func (a *Analyzer) Metadata() analysis.Metadata {
    	meta := analysis.Metadata{
    		Name:        "webhook.Analyzer",
    		Description: "Checks the validity of Istio webhooks",
    		Inputs: []config.GroupVersionKind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    /**
     * Forbids [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called in the given [action].
     *
     * @param description A human-readable description of the [action], which is used to generate error messages when
     *  [analyze][org.jetbrains.kotlin.analysis.api.analyze] is called.
     */
    @OptIn(KaAnalysisApiInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/cmd/vet/main.go

    	unitchecker.Main(
    		appends.Analyzer,
    		asmdecl.Analyzer,
    		assign.Analyzer,
    		atomic.Analyzer,
    		bools.Analyzer,
    		buildtag.Analyzer,
    		cgocall.Analyzer,
    		composite.Analyzer,
    		copylock.Analyzer,
    		defers.Analyzer,
    		directive.Analyzer,
    		errorsas.Analyzer,
    		framepointer.Analyzer,
    		httpresponse.Analyzer,
    		ifaceassert.Analyzer,
    		loopclosure.Analyzer,
    		lostcancel.Analyzer,
    		nilfunc.Analyzer,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/CliFe10AnalysisFacade.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtSourceModule
    import org.jetbrains.kotlin.analysis.project.structure.ProjectStructureProvider
    import org.jetbrains.kotlin.analyzer.AnalysisResult
    import org.jetbrains.kotlin.container.ComponentProvider
    import org.jetbrains.kotlin.container.get
    import org.jetbrains.kotlin.context.ProjectContext
    import org.jetbrains.kotlin.descriptors.ModuleDescriptor
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    have false positives, for example if fields or methods are accessed
    through a type alias that is guarded by a Go version constraint.
    `
    
    var Analyzer = &analysis.Analyzer{
    	Name:             "stdversion",
    	Doc:              Doc,
    	Requires:         []*analysis.Analyzer{inspect.Analyzer},
    	URL:              "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/stdversion",
    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/directive/directive.go

    For //go:debug (see https://go.dev/doc/godebug), the analyzer checks
    that the directives are placed only in Go source files, only above the
    package comment, and only in package main or *_test.go files.
    
    Support for other known directives may be added in the future.
    
    This analyzer does not check //go:build, which is handled by the
    buildtag analyzer.
    `
    
    var Analyzer = &analysis.Analyzer{
    	Name: "directive",
    	Doc:  Doc,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/internal/problems/DefaultProblemLocationAnalyzerTest.groovy

            def shortDisplayName = Describables.of("<short source>")
    
            given:
            analyzer.childScopeCreated(Stub(ClassLoaderScopeId), Stub(ClassLoaderScopeId), new ClassLoaderScopeOrigin.Script("filename", longDisplayName, shortDisplayName))
    
            when:
            def location = analyzer.locationForUsage(failure, false)
    
            then:
            location.sourceLongDisplayName == longDisplayName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:15:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top