Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 395 for printssa (0.28 sec)

  1. tensorflow/compiler/aot/benchmark.h

    struct Stats {
      std::vector<int64_t> per_iter_us;  // Per-iteration deltas in us.
      int64_t total_us;                  // Total time in us.
    
      Stats() : total_us(0) { per_iter_us.reserve(5000); }
    };
    
    // DumpStatsToStdout printfs to stdout stats in a multi-line human-friendly
    // form.
    void DumpStatsToStdout(const Stats& stats);
    
    // BenchmarkFn is the signature of the function generated by tfcompile.
    typedef std::function<void()> BenchmarkFn;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. src/encoding/gob/debug.go

    			deb.value(indent, id)
    			break
    		}
    	}
    }
    
    // printCommonType prints a common type; used by printWireType.
    func (deb *debugger) printCommonType(indent tab, kind string, common *CommonType) {
    	indent.print()
    	fmt.Fprintf(os.Stderr, "%s %q id=%d\n", kind, common.Name, common.Id)
    }
    
    // printWireType prints the contents of a wireType.
    func (deb *debugger) printWireType(indent tab, wire *wireType) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/dist/main.go

    	if gohostarch == "" {
    		// Default Unix system.
    		out := run("", CheckExit, "uname", "-m")
    		outAll := run("", CheckExit, "uname", "-a")
    		switch {
    		case strings.Contains(outAll, "RELEASE_ARM64"):
    			// MacOS prints
    			// Darwin p1.local 21.1.0 Darwin Kernel Version 21.1.0: Wed Oct 13 17:33:01 PDT 2021; root:xnu-8019.41.5~1/RELEASE_ARM64_T6000 x86_64
    			// on ARM64 laptops when there is an x86 parent in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  4. src/database/sql/example_cli_test.go

    	defer cancel()
    
    	if err := pool.PingContext(ctx); err != nil {
    		log.Fatalf("unable to connect to database: %v", err)
    	}
    }
    
    // Query the database for the information requested and prints the results.
    // If the query fails exit the program with an error.
    func Query(ctx context.Context, id int64) {
    	ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
    	defer cancel()
    
    	var name string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 08 17:27:54 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

      explicit TensorFlowExecutorDialect(MLIRContext *context);
    
      // Parses a type registered to this dialect.
      Type parseType(DialectAsmParser &parser) const override;
    
      // Prints a type registered to this dialect.
      void printType(Type type, DialectAsmPrinter &os) const override;
    };
    
    // The Control type is a token-like value that models control dependencies from
    // TensorFlow graphs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessorsTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class PrintAccessorsTest {
    
        abstract class CustomConvention
    
        @Test
        fun `prints accessors for all schema entries`() {
    
            assertThat(
                standardOutputOf {
                    printAccessorsFor(
                        TypedProjectSchema(
                            extensions = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/go/printer/testdata/comments2.golden

    	   c3b
    	*/
    	/* foo
    	   c3c
    	*/
    	/* foo
    	   c3d
    	*/
    	/*
    	   c3e
    	   foo */
    	/*
    	   c3f
    	   foo */
    }
    
    // Test case taken literally from issue 1835.
    func main() {
    	/*
    	   prints test 5 times
    	*/
    	for i := 0; i < 5; i++ {
    		println("test")
    	}
    }
    
    func issue5623() {
    L:
    	_ = yyyyyyyyyyyyyyyy			// comment - should be aligned
    	_ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx	/* comment */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. src/go/printer/testdata/comments2.input

    /*
    c3a
    */
    /*
       c3b
    */
    /* foo
    c3c
    */
    /* foo
       c3d
    */
    /*
    c3e
    foo */
    /*
       c3f
       foo */
    }
    
    // Test case taken literally from issue 1835.
    func main() {
    /*
    prints test 5 times
    */
       for i := 0; i < 5; i++ {
          println("test")
       }
    }
    
    func issue5623() {
    L:
       _ = yyyyyyyyyyyyyyyy // comment - should be aligned
       _ = xxxxxxxxxxxxxxxxxxxxxxxxxxxx /* comment */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 00:06:54 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_deprecate_install.txt

    [short] skip
    
    env GO111MODULE=on
    
    # 'go get' outside a module prints an error.
    ! go get example.com/cmd/a
    stderr '^go: go.mod file not found in current directory or any parent directory.$'
    stderr '^\t''go get'' is no longer supported outside a module.$'
    
    cp go.mod.orig go.mod
    
    # 'go get' inside a module with a non-main package does not print a message.
    # This will stop building in the future, but it's the command we want to use.
    go get rsc.io/quote
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/printers/interface.go

    	return fn(obj, w)
    }
    
    // ResourcePrinter is an interface that knows how to print runtime objects.
    type ResourcePrinter interface {
    	// PrintObj receives a runtime object, formats it and prints it to a writer.
    	PrintObj(runtime.Object, io.Writer) error
    }
    
    // PrintOptions struct defines a struct for various print options
    type PrintOptions struct {
    	NoHeaders     bool
    	WithNamespace bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 00:36:07 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top