Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 756 for deltaY (0.12 sec)

  1. pkg/monitoring/monitortest/test.go

    					continue
    				}
    				var v any
    				if row.Counter != nil {
    					cv := *row.Counter.Value
    					key := toMetricKey(row, metric)
    					if delta, f := m.deltas[key]; f {
    						cv -= delta
    					}
    					v = cv
    				} else if row.Gauge != nil {
    					v = *row.Gauge.Value
    				} else if row.Histogram != nil {
    					v = row.Histogram
    				}
    				err := compare(v)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/pcln.go

    		// When the scan is over, we emit the closing ", pc)".
    		//
    		// The table is delta-encoded. The value deltas are signed and
    		// transmitted in zig-zag form, where a complement bit is placed in bit 0,
    		// and the pc deltas are unsigned. Both kinds of deltas are sent
    		// as variable-length little-endian base-128 integers,
    		// where the 0x80 bit indicates that the integer continues.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. src/runtime/netpoll_windows.go

    // delay < 0: blocks indefinitely
    // delay == 0: does not block, just polls
    // delay > 0: block for up to that many nanoseconds
    func netpoll(delay int64) (gList, int32) {
    	if iocphandle == _INVALID_HANDLE_VALUE {
    		return gList{}, 0
    	}
    
    	var entries [64]overlappedEntry
    	var wait uint32
    	var toRun gList
    	mp := getg().m
    
    	if delay >= 1e15 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. src/runtime/netpoll_wasip1.go

    func netpollBreak() {}
    
    func netpoll(delay int64) (gList, int32) {
    	lock(&mtx)
    
    	// If delay >= 0, we include a subscription of type Clock that we use as
    	// a timeout. If delay < 0, we omit the subscription and allow poll_oneoff
    	// to block indefinitely.
    	pollsubs := subs
    	if delay >= 0 {
    		timeout := &subs[0]
    		clock := timeout.u.subscriptionClock()
    		clock.timeout = uint64(delay)
    	} else {
    		pollsubs = subs[1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/runtime/netpoll_stub.go

    		notetsleep(&netpollNote, delay)
    		unlock(&netpollStubLock)
    		// Guard against starvation in case the lock is contended
    		// (eg when running TestNetpollBreak).
    		osyield()
    	}
    	return gList{}, 0
    }
    
    func netpollinited() bool {
    	return netpollInited.Load() != 0
    }
    
    func netpollAnyWaiters() bool {
    	return false
    }
    
    func netpollAdjustWaiters(delta int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/math/big/arith.go

    	//   ⎣(B^2-1)/d⎦ = m+B
    	//   (B^2-1)/d = m+B+delta1    0 <= delta1 <= (d-1)/d
    	//   B^2/d = m+B+delta2        0 <= delta2 <= 1
    	// The quotient we're trying to compute is
    	//   quotient = ⎣(x1*B+x0)/d⎦
    	//            = ⎣(x1*B*(B^2/d)+x0*(B^2/d))/B^2⎦
    	//            = ⎣(x1*B*(m+B+delta2)+x0*(m+B+delta2))/B^2⎦
    	//            = ⎣(x1*m+x1*B+x0)/B + x0*m/B^2 + delta2*(x1*B+x0)/B^2⎦
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    // when invoked from multiple goroutines.
    type RequestWaitGroup interface {
    	// Add adds delta, which may be negative, similar to sync.WaitGroup.
    	// If Add with a positive delta happens after Wait, it will return error,
    	// which prevent unsafe Add.
    	Add(delta int) error
    
    	// Done decrements the WaitGroup counter.
    	Done()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/hash/HashTestUtils.java

              int key2 = key1 ^ delta;
    
              // get hashes
              int hash1 = function.hashInt(key1).asInt();
              int hash2 = function.hashInt(key2).asInt();
    
              // this 2-bit candidate delta is not a characteristic
              // if deltas are different
              if ((hash1 ^ hash2) != delta) {
                diff = true;
                continue;
              }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 25.3K bytes
    - Viewed (0)
  9. src/image/draw/draw.go

    	dx, dy := r.Dx(), r.Dy()
    	d0 := dst.PixOffset(r.Min.X, r.Min.Y)
    	s0 := src.PixOffset(sp.X, sp.Y)
    	var (
    		ddelta, sdelta int
    		i0, i1, idelta int
    	)
    	if r.Min.Y < sp.Y || r.Min.Y == sp.Y && r.Min.X <= sp.X {
    		ddelta = dst.Stride
    		sdelta = src.Stride
    		i0, i1, idelta = 0, dx*4, +4
    	} else {
    		// If the source start point is higher than the destination start point, or equal height but to the left,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/runtime/netpoll_solaris.go

    // Returns list of goroutines that become runnable.
    // delay < 0: blocks indefinitely
    // delay == 0: does not block, just polls
    // delay > 0: block for up to that many nanoseconds
    func netpoll(delay int64) (gList, int32) {
    	if portfd == -1 {
    		return gList{}, 0
    	}
    
    	var wait *timespec
    	var ts timespec
    	if delay < 0 {
    		wait = nil
    	} else if delay == 0 {
    		wait = &ts
    	} else {
    		ts.setNsec(delay)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top