Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 395 for printssa (0.31 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/op_stat_pass.cc

                                std::vector<std::string> accepted_dialects = {})
          : accepted_dialects_(accepted_dialects), os_(os), total_ops_(0) {}
    
      // Prints the resultant operation statistics pos_t iterating over the module.
      void runOnOperation() override;
    
      // Prints summary of op stats.
      void PrintSummary();
    
      // Keeps track of dtype counts per op.
      void CountOp(DenseMap<StringRef, llvm::StringMap<int64_t>> &op_count_map,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/go/types/example_test.go

    import (
    	"fmt"
    	"go/ast"
    	"go/format"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"go/types"
    	"log"
    	"regexp"
    	"slices"
    	"strings"
    )
    
    // ExampleScope prints the tree of Scopes of a package created from a
    // set of parsed files.
    func ExampleScope() {
    	// Parse the source files for a package.
    	fset := token.NewFileSet()
    	var files []*ast.File
    	for _, src := range []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/vet_internal.txt

    env GO111MODULE=off
    
    # Issue 36173. Verify that "go vet" prints line numbers on load errors.
    
    ! go vet a/a.go
    stderr '^package command-line-arguments\n\ta[/\\]a.go:5:3: use of internal package'
    
    ! go vet a/a_test.go
    stderr '^package command-line-arguments \(test\)\n\ta[/\\]a_test.go:4:3: use of internal package'
    
    ! go vet a
    stderr '^package a\n\ta[/\\]a.go:5:3: use of internal package'
    
    go vet b/b.go
    ! stderr 'use of internal package'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 27 21:13:06 UTC 2020
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/ide/problems-api-usage/README.adoc

    * `sample-project`: A Gradle build with plugins that report problems
    * `sample-ide`: a project that simulates the IDE functionality. In other words, it uses the Gradle Tooling API to configure and run the `sample-project` build and prints the received problem reports received during the process.
    * `reporters/standard-plugin` shows the usage of the Problems API in a standard Gradle plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors.kt

    import javax.inject.Inject
    
    
    @DisableCachingByDefault(because = "Produces only non-cacheable console output")
    abstract class PrintAccessors : DefaultTask() {
    
        init {
            group = "help"
            description = "Prints the Kotlin code for accessing the currently available project extensions and conventions."
        }
    
        @get:Inject
        protected
        abstract val projectSchemaProvider: ProjectSchemaProvider
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/examples/customization/ops_defs.py

    flags.DEFINE_bool('gen_register_op', True,
                      'Generate register op cc file or tfr mlir file.')
    
    
    # The original kernel is defined in 'tensorflow/python/framework/ops_test.py'
    # and prints out the current graph def version.
    @Composite('TestAttr')
    def _override_test_attr_op():
      ret = array_ops.Const(value=100.0, dtype=dtypes.float32)
      return ret
    
    
    def main(_):
      if FLAGS.gen_register_op:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/cluster.go

    		return false
    	}
    	if c.Port != 0 {
    		p := fmt.Sprintf("|%v|", c.Port)
    		if !strings.Contains(name, p) {
    			return false
    		}
    	}
    	return true
    }
    
    // PrintClusterSummary prints a summary of the relevant clusters in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintClusterSummary(filter ClusterFilter) error {
    	w, clusters, err := c.setupClusterConfigWriter()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/bug/bug.go

    		// Print up to the first newline.
    		fmt.Fprintf(w, "gdb --version: %s\n", firstLine(out))
    	} else {
    		if cfg.BuildV {
    			fmt.Printf("failed to run gdb --version: %v\n", err)
    		}
    	}
    }
    
    // printCmdOut prints the output of running the given command.
    // It ignores failures; 'go bug' is best effort.
    func printCmdOut(w io.Writer, prefix, path string, args ...string) {
    	cmd := exec.Command(path, args...)
    	out, err := cmd.Output()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/doc/doc.go

    var CmdDoc = &base.Command{
    	Run:         runDoc,
    	UsageLine:   "go doc [doc flags] [package|[package.]symbol[.methodOrField]]",
    	CustomFlags: true,
    	Short:       "show documentation for package or symbol",
    	Long: `
    Doc prints the documentation comments associated with the item identified by its
    arguments (a package, const, func, type, var, method, or struct field)
    followed by a one-line summary of each of the first-level items "under"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  10. hack/apidiff.sh

            # sub-directories have to have a leading dot.
            d="./${d}"
        fi
        targets[i]="${d}"
    done
    
    # Must be a something that git can resolve to a commit.
    # "git rev-parse --verify" checks that and prints a detailed
    # error.
    if [ -n "${target}" ]; then
        target="$(git rev-parse --verify "${target}")"
    fi
    
    # Determine defaults.
    if [ -z "${base}" ]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top