Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for datapoint (0.23 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. src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java

        }
    
    
        /**
         * @return the dataCount
         */
        protected final int getDataCount () {
            return this.dataCount;
        }
    
    
        /**
         * @param dataCount
         *            the dataCount to set
         */
        public final void setDataCount ( int dataCount ) {
            this.dataCount = dataCount;
        }
    
    
        /**
         * @param buffer
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 9.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

            }
    
            if ( this.dataCount > 0 ) {
                System.arraycopy(this.txn_buf, this.bufDataOffset, dst, this.headerStart + this.dataOffset, this.dataCount);
                this.bufDataOffset += this.dataCount;
                end = Math.max(end, this.headerStart + this.dataOffset + this.dataCount);
            }
    
            return end - start;
        }
    
    
        @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 13:43:42 UTC 2020
    - 13.2K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/smb1/smb1/SmbComTransaction.java

                dstIndex += parameterCount;
            }
    
            if( dataCount > 0 ) {
                p = pad1;
                while( p-- > 0 ) {
                    dst[dstIndex++] = (byte)0x00;       // Pad1
                }
                System.arraycopy( txn_buf, bufDataOffset, dst, dstIndex, dataCount );
                bufDataOffset += dataCount;
                dstIndex += dataCount;
            }
    
            return dstIndex - start;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbComTransactionResponse.java

                bufferIndex += parameterCount;
            }
            if( dataCount > 0 ) {
                bufferIndex += pad1 = dataOffset - ( bufferIndex - headerStart );
                System.arraycopy( buffer, bufferIndex, txn_buf,
                                bufDataStart + dataDisplacement, dataCount );
                bufferIndex += dataCount;
            }
    
            /* Check to see if the entire transaction has been
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/jcifs/smb1/smb1/SmbComNtTransaction.java

            if (command == SMB_COM_NT_TRANSACT_SECONDARY) {
                writeInt4( parameterDisplacement, dst, dstIndex );
                dstIndex += 4;
            }
            writeInt4( dataCount, dst, dstIndex );
            dstIndex += 4;
            writeInt4(( dataCount == 0 ? 0 : dataOffset ), dst, dstIndex );
            dstIndex += 4;
            if (command == SMB_COM_NT_TRANSACT_SECONDARY) {
                writeInt4( dataDisplacement, dst, dstIndex );
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 3K bytes
    - Viewed (0)
Back to top