Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for Measurement (0.2 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    		return float64(value), toUnit
    	}
    }
    
    // Label returns the label used to describe a certain measurement.
    func Label(value int64, unit string) string {
    	return ScaledLabel(value, unit, "auto")
    }
    
    // ScaledLabel scales the passed-in measurement (if necessary) and
    // returns the label used to describe a float measurement.
    func ScaledLabel(value int64, fromUnit, toUnit string) string {
    	v, u := Scale(value, fromUnit, toUnit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		}
    
    		f, u := measurement.Scale(total, o.SampleUnit, o.OutputUnit)
    		fmt.Fprintf(tabw, "%s:\t Total %.1f%s\n", key, f, u)
    		for _, t := range graph.SortTags(tags, true) {
    			f, u := measurement.Scale(t.FlatValue(), o.SampleUnit, o.OutputUnit)
    			if total > 0 {
    				fmt.Fprintf(tabw, " \t%.1f%s (%s):\t %s\n", f, u, measurement.Percentage(t.FlatValue(), total), t.Name)
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/stacks.go

    // limitations under the License.
    
    package driver
    
    import (
    	"encoding/json"
    	"html/template"
    	"net/http"
    
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/report"
    )
    
    // stackView generates the flamegraph view.
    func (ui *webInterface) stackView(w http.ResponseWriter, req *http.Request) {
    	// Get all data in a report.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	"fmt"
    	"html/template"
    	"io"
    	"net"
    	"net/http"
    	gourl "net/url"
    	"os"
    	"os/exec"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/google/pprof/internal/graph"
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/internal/report"
    	"github.com/google/pprof/profile"
    )
    
    // webInterface holds the state needed for serving a browser based interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/cmd/vendor/modules.txt

    github.com/google/pprof/driver
    github.com/google/pprof/internal/binutils
    github.com/google/pprof/internal/driver
    github.com/google/pprof/internal/elfexec
    github.com/google/pprof/internal/graph
    github.com/google/pprof/internal/measurement
    github.com/google/pprof/internal/plugin
    github.com/google/pprof/internal/report
    github.com/google/pprof/internal/symbolizer
    github.com/google/pprof/internal/symbolz
    github.com/google/pprof/internal/transport
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/default_quant_params.cc

    // The Pass to add default quantization parameters for the activations which
    // don't have quantization information. These default parameters are usually
    // not from real measurement, so this pass is only for test purpose.
    
    namespace mlir {
    namespace TFL {
    // Includs an auto-generated function, which can retrieve the quantization
    // specification for an TFL operation. The signature of the function is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    import (
    	"bytes"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    // fetchProfiles fetches and symbolizes the profiles specified by s.
    // It will merge all the profiles it is able to retrieve, even if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. pkg/proxy/metrics/metrics.go

    	// Note that the metrics is partially based on the time exported by the endpoints controller on
    	// the master machine. The measurement may be inaccurate if there is a clock drift between the
    	// node and master machine.
    	NetworkProgrammingLatency = metrics.NewHistogram(
    		&metrics.HistogramOpts{
    			Subsystem: kubeProxySubsystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    Measuring the impact is both important and complicated, as cache performance is determined by many factors.
    Performing measurements of the cache's impact can validate the extra effort (work, infrastructure) that is required to start using the cache.
    These measurements can later serve as baselines for future improvements, and to watch for signs of regressions.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    import (
    	"bufio"
    	"fmt"
    	"html/template"
    	"io"
    	"os"
    	"path/filepath"
    	"regexp"
    	"sort"
    	"strconv"
    	"strings"
    
    	"github.com/google/pprof/internal/graph"
    	"github.com/google/pprof/internal/measurement"
    	"github.com/google/pprof/internal/plugin"
    	"github.com/google/pprof/profile"
    )
    
    // printSource prints an annotated source listing, include all
    // functions with samples that match the regexp rpt.options.symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
Back to top