Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for datapoint (0.34 sec)

  1. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                }
                const text = revLabel + ', date: ' + executionLabel.date + ', ' + label + ': ' + item.datapoint[1] + unit;
                $('#tooltip').html(text).css({top: item.pageY - 20, left: item.pageX + 10}).show();
            }
    
            function hoverOnExecutionGraph(event, pos, item) {
                $('#tooltip').html(item.datapoint[1] + " " + unit).css({top: item.pageY - 30, left: item.pageX + 10}).show();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    nt { void Theories$TheoryAnchor$2(Theories$TheoryAnchor, internal.Assignments, org.junit.runners.model.FrameworkMethod, Object); public void evaluate() throws Throwable; } org/junit/experimental/theories/DataPoint.class package org.junit.experimental.theories; public abstract interface DataPoint extends annotation.Annotation { public abstract String[] value(); public abstract Class[] ignoredExceptions(); } org/junit/experimental/theories/Theories$TheoryAnchor$1.class package org.junit.experimental.theories;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
  3. pkg/kubelet/metrics/metrics_test.go

    func TestImagePullDurationMetric(t *testing.T) {
    	t.Run("register image pull duration", func(t *testing.T) {
    		Register()
    		defer clearMetrics()
    
    		// Pairs of image size in bytes and pull duration in seconds
    		dataPoints := [][]float64{
    			// 0 byets, 0 seconds
    			{0, 0},
    			// 5MB, 10 seconds
    			{5 * 1024 * 1024, 10},
    			// 15MB, 20 seconds
    			{15 * 1024 * 1024, 20},
    			// 500 MB, 200 seconds
    			{500 * 1024 * 1024, 200},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/construct.go

    			// use the protobuf tag, which must be stable
    			dataInt := 0
    			if protobufTagParts := strings.Split(field.Tag.Get("protobuf"), ","); len(protobufTagParts) > 1 {
    				if tag, err := strconv.Atoi(protobufTagParts[1]); err != nil {
    					panic(err)
    				} else {
    					dataInt = tag
    				}
    			}
    			if dataInt == 0 {
    				// fall back to the length of dataString as a backup
    				dataInt = -len(dataString)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  5. src/runtime/profbuf.go

    	bw := b.w.load()
    
    	// room for tag?
    	if countSub(br.tagCount(), bw.tagCount())+len(b.tags) < 1 {
    		return false
    	}
    
    	// room for data?
    	nd := countSub(br.dataCount(), bw.dataCount()) + len(b.data)
    	want := 2 + int(b.hdrsize) + nstk
    	i := int(bw.dataCount() % uint32(len(b.data)))
    	if i+want > len(b.data) {
    		// Can't fit in trailing fragment of slice.
    		// Skip over that and start over at beginning of slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  6. cmd/erasure.go

    	return nil
    }
    
    // defaultWQuorum write quorum based on setDriveCount and defaultParityCount
    func (er erasureObjects) defaultWQuorum() int {
    	dataCount := er.setDriveCount - er.defaultParityCount
    	if dataCount == er.defaultParityCount {
    		return dataCount + 1
    	}
    	return dataCount
    }
    
    func diskErrToDriveState(err error) (state string) {
    	switch {
    	case errors.Is(err, errDiskNotFound) || errors.Is(err, context.DeadlineExceeded):
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. okcurl/src/test/kotlin/okhttp3/curl/MainTest.kt

        assertThat(request.method).isEqualTo("PUT")
        assertThat(request.url.toString()).isEqualTo("http://example.com/")
        assertThat(request.body!!.contentLength()).isEqualTo(3)
      }
    
      @Test
      fun dataPost() {
        val request = fromArgs("-d", "foo", "http://example.com").createRequest()
        val body = request.body
        assertThat(request.method).isEqualTo("POST")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/static/trace_viewer_full.html

    lientX,clientY){const chartPoint=this.getChartPointAtClientPoint_({x:clientX,y:clientY});return this.getDataPointAtChartPoint_(chartPoint);},prepareDataEvent_(mouseEvent,dataEvent){const dataPoint=this.getDataPointAtClientPoint_(mouseEvent.clientX,mouseEvent.clientY);dataEvent.x=dataPoint.x;dataEvent.y=dataPoint.y;},onMouseDown_(mouseEvent){tr.ui.b.trackMouseMovesUntilMouseUp(this.onMouseMove_.bind(this,mouseEvent.button),this.onMouseUp_.bind(this,mouseEvent.button));mouseEvent.preventDefault();...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top