Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for measureText (0.17 sec)

  1. src/math/fma.go

    func shrcompress(u1, u2 uint64, n uint) (r1, r2 uint64) {
    	// TODO: Performance here is really sensitive to the
    	// order/placement of these branches. n == 0 is common
    	// enough to be in the fast path. Perhaps more measurement
    	// needs to be done to find the optimal order/placement?
    	switch {
    	case n == 0:
    		return u1, u2
    	case n == 64:
    		return 0, u1 | nonzero(u2)
    	case n >= 128:
    		return 0, nonzero(u1 | u2)
    	case n < 64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/webapp/js/admin/popper.min.js.map

    'left'].indexOf(placement) !== -1;\n  const mainSide = isHoriz ? 'top' : 'left';\n  const secondarySide = isHoriz ? 'left' : 'top';\n  const measurement = isHoriz ? 'height' : 'width';\n  const secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n  popperOffsets[mainSide] =\n    referenceOffsets[mainSide] +\n    referenceOffsets[measurement] / 2 -\n    popperRect[measurement] / 2;\n  if (placement === secondarySide) {\n    popperOffsets[secondarySide] =\n      referenceOffsets[secondarySide] - popperRe...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  5. src/runtime/trace/annotation.go

    // and when the End method is called, and provides the latency
    // distribution per task type.
    // If the End method is called multiple times, only the first
    // call is used in the latency measurement.
    //
    //	ctx, task := trace.NewTask(ctx, "awesomeTask")
    //	trace.WithRegion(ctx, "preparation", prepWork)
    //	// preparation of the task
    //	go func() {  // continue processing the task in a separate goroutine.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/base/timings.go

    // AddEvent associates an event, i.e., a count, or an amount of data,
    // with the most recently started or stopped phase; or the very first
    // phase if Start or Stop hasn't been called yet. The unit specifies
    // the unit of measurement (e.g., MB, lines, no. of funcs, etc.).
    func (t *Timings) AddEvent(size int64, unit string) {
    	m := t.events
    	if m == nil {
    		m = make(map[int][]*event)
    		t.events = m
    	}
    	i := len(t.list)
    	if i > 0 {
    		i--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    }
    
    // RegionalID returns the ID for the regional variant of this tag. This index is
    // used to indicate region-specific overrides, such as default currency, default
    // calendar and week data, default time cycle, and default measurement system
    // and unit preferences.
    //
    // For instance, the tag en-GB-u-rg-uszzzz specifies British English with US
    // settings for currency, number formatting, etc. The CompactIndex for this tag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/AmountTest.groovy

     * limitations under the License.
     */
    package org.gradle.performance.measure
    
    import spock.lang.Specification
    
    class AmountTest extends Specification {
    
        def "toString() retains original measurement"() {
            expect:
            Amount.valueOf(value, units).toString() == str
    
            where:
            value    | units            | str
            0        | Fruit.apples     | "0 apples"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. 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)
Back to top