Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 491 for analyzers (0.26 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/cgocall/cgocall.go

    sharing rules.
    Specifically, it warns about attempts to pass a Go chan, map, func,
    or slice to C, either directly, or via a pointer, array, or struct.`
    
    var Analyzer = &analysis.Analyzer{
    	Name:             "cgocall",
    	Doc:              Doc,
    	URL:              "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/cgocall",
    	RunDespiteErrors: true,
    	Run:              run,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/checkinject.go

    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/completion"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/writer/table"
    	analyzer_util "istio.io/istio/pkg/config/analysis/analyzers/util"
    )
    
    var labelPairs string
    
    func Cmd(ctx cli.Context) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "check-inject [<type>/]<name>[.<namespace>]",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. tests/integration/pilot/analyze_test.go

    	t.Helper()
    
    	args := []string{"analyze"}
    	if ns != "" {
    		args = append(args, "--namespace", ns)
    	}
    	// Suppress some cluster-wide checks. This ensures we do not fail tests when running on clusters that trigger
    	// analyzers we didn't intended to test.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/configcontroller.go

    		}
    	}
    	return nil
    }
    
    // initInprocessAnalysisController spins up an instance of Galley which serves no purpose other than
    // running Analyzers for status updates.  The Status Updater will eventually need to allow input from istiod
    // to support config distribution status as well.
    func (s *Server) initInprocessAnalysisController(args *PilotArgs) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/tag.go

    	"k8s.io/client-go/rest"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/util"
    	"istio.io/istio/istioctl/pkg/util/formatting"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/webhook"
    	"istio.io/istio/pkg/config/analysis/diag"
    	"istio.io/istio/pkg/config/analysis/local"
    	"istio.io/istio/pkg/config/resource"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. istioctl/pkg/precheck/precheck.go

    	"istio.io/istio/istioctl/pkg/util/formatting"
    	istiocluster "istio.io/istio/pkg/cluster"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/maturity"
    	"istio.io/istio/pkg/config/analysis/diag"
    	legacykube "istio.io/istio/pkg/config/analysis/legacy/source/kube"
    	"istio.io/istio/pkg/config/analysis/local"
    	"istio.io/istio/pkg/config/analysis/msg"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    		if err != nil {
    			return err
    		}
    	}
    
    	err = sa.AddReaderKubeSource(localWebhookYAMLReaders)
    	if err != nil {
    		return err
    	}
    
    	// Analyze webhooks
    	res, err := sa.Analyze(make(chan struct{}))
    	if err != nil {
    		return err
    	}
    	relevantMessages := filterOutBasedOnResources(res.Messages, parsedK8sObjects)
    	if len(relevantMessages) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. pilot/pkg/config/file/store.go

    			objMeta.SetNamespace(string(s.defaultNs))
    		}
    	} else {
    		// Clear the namespace if there is any specified.
    		objMeta.SetNamespace("")
    	}
    
    	// Build flat map for analyzers if the line JSON object exists, if the YAML text is ill-formed, this will be nil
    	fieldMap := make(map[string]int)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    )
    
    func init() {
    	Analyzer.Flags.Var(isPrint, "funcs", "comma-separated list of print function names to check")
    }
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name:       "printf",
    	Doc:        analysisutil.MustExtractDoc(doc, "printf"),
    	URL:        "https://pkg.go.dev/golang.org/x/tools/go/analysis/passes/printf",
    	Requires:   []*analysis.Analyzer{inspect.Analyzer},
    	Run:        run,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K 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