Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for deltaY (0.23 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        vb.baseVal.x = u.x - (u.x - vb.baseVal.x) * (w2 / w1);
        vb.baseVal.y = u.y - (u.y - vb.baseVal.y) * (h2 / h1);
      }
    
      function handleWheel(e) {
        if (e.deltaY == 0) return;
        // Change scale factor by 1.1 or 1/1.1
        rescale(currentScale * (e.deltaY < 0 ? 1.1 : (1/1.1)),
                toSvg(e.offsetX, e.offsetY));
      }
    
      function setMode(m) {
        mode = m;
        touchid = null;
        touchid2 = null;
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	var logFiltered string
    	if !req.Delta.IsEmpty() && !requiresResourceNamesModification(w.TypeUrl) {
    		// Some types opt out of this and natively handle req.Delta
    		logFiltered = " filtered:" + strconv.Itoa(len(w.ResourceNames)-len(req.Delta.Subscribed))
    		w = &model.WatchedResource{
    			TypeUrl:       w.TypeUrl,
    			ResourceNames: req.Delta.Subscribed.UnsortedList(),
    		}
    	}
    
    	var res model.Resources
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/adsc/delta.go

    	if config == nil {
    		config = &DeltaADSConfig{}
    	}
    	delta := NewDelta(discoveryAddr, config, opts...)
    	delta.cfg.BackoffPolicy = backoffPolicy
    	return delta
    }
    
    func typeName[T proto.Message]() string {
    	ft := new(T)
    	return resource.APITypePrefix + string((*ft).ProtoReflect().Descriptor().FullName())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/image/gif/writer_test.go

    			sum += delta(r0, r1)
    			sum += delta(g0, g1)
    			sum += delta(b0, b1)
    			n += 3
    		}
    	}
    	return sum / n
    }
    
    // lzw.NewWriter wants an interface which is basically the same thing as gif's
    // writer interface.  This ensures we're compatible.
    var _ writer = blockWriter{}
    
    var testCase = []struct {
    	filename  string
    	tolerance int64
    }{
    	{"../testdata/video-001.png", 1 << 12},
    	{"../testdata/video-001.gif", 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/time/sleep_test.go

    	t.Parallel()
    	const Count = 10
    	Delta := 100 * Millisecond
    	if testing.Short() {
    		Delta = 10 * Millisecond
    	}
    	t0 := Now()
    	for i := 0; i < Count; i++ {
    		<-After(Delta)
    	}
    	t1 := Now()
    	d := t1.Sub(t0)
    	target := Delta * Count
    	if d < target*9/10 {
    		t.Fatalf("%d ticks of %s too fast: took %s, expected %s", Count, Delta, d, target)
    	}
    	if !testing.Short() && d > target*30/10 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/runtime/mstats.go

    	}
    }
    
    // heapStatsDelta contains deltas of various runtime memory statistics
    // that need to be updated together in order for them to be kept
    // consistent with one another.
    type heapStatsDelta struct {
    	// Memory stats.
    	committed       int64 // byte delta of memory committed
    	released        int64 // byte delta of released memory generated
    	inHeap          int64 // byte delta of memory placed in the heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/runtime/netpoll.go

    //     Disable notifications for fd. Return an errno value.
    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    //     poll without blocking. If delta > 0, block for up to delta nanoseconds.
    //     Return a list of goroutines built by calling netpollready,
    //     and a delta to add to netpollWaiters when all goroutines are ready.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster.go

    		if dir == model.TrafficDirectionInbound {
    			// Append all inbound clusters because in both stow/delta we always build all inbound clusters.
    			// In reality, the delta building is only for outbound clusters. We need to revist here once we support delta for inbound.
    			// So deletedClusters.Difference(builtClusters) would give us the correct deleted inbound clusters.
    			deletedClusters.Insert(cluster)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top