Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for GatherNd (0.2 sec)

  1. pkg/ctrlz/topics/assets/templates/mem.html

    {{ define "content" }}
    
    <p>
        This information is gathered from the Go runtime and represents the ongoing memory consumption
        of this process. Please refer to the <a href="https://golang.org/pkg/runtime/#MemStats">Go documentation on the MemStats type</a>
        for more information about all of these values.
    </p>
    
    <table>
        <thead>
        <tr>
            <th>Counter</th>
            <th>Value</th>
            <th>Description</th>
        </tr>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

        /**
         * Constructs the store.
         *
         * @param recordedTypeAnnotations Annotations on the type itself that should be gathered.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  3. tensorflow/cc/gradients/math_grad.cc

                               Output& zero_clipped_indices, Output& is_positive) {
      auto gathered = Gather(scope, params, zero_clipped_indices);
      // Replace gathered params of negative indices with 0.
      auto zero_slice = ZerosLike(scope, gathered);
      return SelectV2(scope, is_positive, gathered, zero_slice);
    }
    
    Status UnsortedSegmentMinOrMaxGrad(const Scope& scope, const Operation& op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  4. tests/integration/telemetry/policy/helper_test.go

    	PortName string
    	HTTP2    bool
    	Host     string
    	Expected Expected
    }
    
    // Expected contains the metric and query to run against
    // prometheus to validate that expected telemetry information was gathered;
    // as well as the http response code
    type Expected struct {
    	Query           prometheus.Query
    	StatusCode      int
    	Metric          string
    	PromQueryFormat string
    	Protocol        string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/http.go

    var templMain = template.Must(template.New("").Parse(`
    <html>
    <style>` + CommonStyle + `</style>
    <body>
    <h1>cmd/trace: the Go trace event viewer</h1>
    <p>
      This web server provides various visualizations of an event log gathered during
      the execution of a Go program that uses the <a href='https://pkg.go.dev/runtime/trace'>runtime/trace</a> package.
    </p>
    
    <h2>Event timelines for running goroutines</h2>
    {{range $i, $view := $}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/tfcompile.bzl

            full set of deps needed by the generated library.
          enable_xla_hlo_profiling: Enable XLA HLO profiling in the generated
            program, and emit metadata that lets us pretty-print the gathered
            profile counters.
          enable_tracemes: Tell tfcompile to generate calls to
            TraceMe::Activity{Start|End} around HLO instructions that can be used by
            Xprof to construct profiler timelines.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    }
    
    // SendmsgBuffers sends a message on a socket to an address using the sendmsg
    // system call. This function is equivalent to SendmsgN, but the non-control
    // data is gathered from buffers.
    func SendmsgBuffers(fd int, buffers [][]byte, oob []byte, to Sockaddr, flags int) (n int, err error) {
    	iov := make([]Iovec, len(buffers))
    	for i := range buffers {
    		if len(buffers[i]) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    // A Label represents a declared label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. src/go/types/object.go

    	// 2) internally created but not yet type-checked.
    	// For case 1) we can't do anything; the client must know what they are doing.
    	// For case 2) we can use the information gathered by the resolver.
    	return obj.hasPtrRecv_
    }
    
    func (*Func) isDependency() {} // a function may be a dependency of an initialization expression
    
    // A Label represents a declared label.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/operand_test.go

    	return NewParser(ctxt, architecture, nil)
    }
    
    // tryParse executes parse func in panicOnError=true context.
    // parse is expected to call any parsing methods that may panic.
    // Returns error gathered from recover; nil if no parse errors occurred.
    //
    // For unexpected panics, calls t.Fatal.
    func tryParse(t *testing.T, parse func()) (err error) {
    	panicOnError = true
    	defer func() {
    		panicOnError = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top