Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for analyzers (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def ExecutorCheckControlDependenciesPass : Pass<"tf-executor-check-control-dependencies", "ModuleOp"> {
      let summary = "Checks control dependencies";
    
      let description = [{
        This pass analyzes control dependencies between islands and warns about
        dependencies that are not explainable by side effects of the involved ops.
        More precisely, for every minimal unexplainable control dependency path
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // For details of a specific checker such as 'printf', see 'go tool vet help printf'.
    //
    // The -vettool=prog flag selects a different analysis tool with alternative
    // or additional checks.
    // For example, the 'shadow' analyzer can be built and run using these commands:
    //
    //	go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow@latest
    //	go vet -vettool=$(which shadow)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	}
    
    	hip, errCode := extractHealInitParams(mux.Vars(r), r.Form, r.Body)
    	if errCode != ErrNone {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(errCode), r.URL)
    		return
    	}
    
    	// Analyze the heal token and route the request accordingly
    	token, success := proxyRequestByToken(ctx, w, r, hip.clientToken)
    	if success {
    		return
    	}
    	hip.clientToken = token
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	if kl.oomWatcher != nil {
    		if err := kl.oomWatcher.Start(kl.nodeRef); err != nil {
    			return fmt.Errorf("failed to start OOM watcher: %w", err)
    		}
    	}
    
    	// Start resource analyzer
    	kl.resourceAnalyzer.Start()
    
    	return nil
    }
    
    // initializeRuntimeDependentModules will initialize internal modules that require the container runtime to be up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		// for the overall whole-tree scan.)
    		if cfg.CmdName == "test" {
    			vetFlags = append(vetFlags, "-unreachable=false")
    		}
    	}
    
    	// Note: We could decide that vet should compute export data for
    	// all analyses, in which case we don't need to include the flags here.
    	// But that would mean that if an analysis causes problems like
    	// unexpected crashes there would be no way to turn it off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    in the second file, and so on.
    </p>
    
    <p>
    Dependency analysis does not rely on the actual values of the
    variables, only on lexical <i>references</i> to them in the source,
    analyzed transitively. For instance, if a variable <code>x</code>'s
    initialization expression refers to a function whose body refers to
    variable <code>y</code> then <code>x</code> depends on <code>y</code>.
    Specifically:
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top