Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 242 for deltaY (0.27 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

      }
    
      /** Returns a new bias. */
      private fun adapt(
        delta: Int,
        numpoints: Int,
        first: Boolean,
      ): Int {
        var delta =
          when {
            first -> delta / DAMP
            else -> delta / 2
          }
        delta += (delta / numpoints)
        var k = 0
        while (delta > ((BASE - TMIN) * TMAX) / 2) {
          delta /= (BASE - TMIN)
          k += BASE
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. releasenotes/notes/delta-xds-default.yaml

    issue:
      - 47949
    releaseNotes:
      - |
        **Enabled** [Delta xDS](https://www.envoyproxy.io/docs/envoy/latest/api-docs/xds_protocol#incremental-xds) by default. See upgrade notes for more information.
    upgradeNotes:
      - title: Delta xDS on by default
        content: |
          In previous versions, Istio used the "State of the world" xDS protocol to configure Envoy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 17:43:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. pkg/queue/delay.go

    func (d *delayQueue) Push(task Task) {
    	d.pushInternal(&delayTask{do: task, runAt: time.Now()})
    }
    
    // PushDelayed will execute the task after waiting for the delay
    func (d *delayQueue) PushDelayed(t Task, delay time.Duration) {
    	task := &delayTask{do: t, runAt: time.Now().Add(delay)}
    	d.pushInternal(task)
    }
    
    // pushInternal will enqueue the delayTask with retries.
    func (d *delayQueue) pushInternal(task *delayTask) {
    	select {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 06:27:31 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/const1.go

    	_ = complex128(maxUint64)
    )
    
    // TODO(gri) find smaller deltas below
    
    const delta32 = maxFloat32/(1 << 23)
    
    const (
    	_ float32 = - /* ERROR "overflow" */ (maxFloat32 + delta32)
    	_ float32 = -maxFloat32
    	_ float32 = maxFloat32
    	_ float32 = maxFloat32 /* ERROR "overflow" */ + delta32
    
    	_ = float32(- /* ERROR "cannot convert" */ (maxFloat32 + delta32))
    	_ = float32(-maxFloat32)
    	_ = float32(maxFloat32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 16:11:16 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/delay.go

    type DelayFunc func() time.Duration
    
    // Timer takes an arbitrary delay function and returns a timer that can handle arbitrary interval changes.
    // Use Backoff{...}.Timer() for simple delays and more efficient timers.
    func (fn DelayFunc) Timer(c clock.Clock) Timer {
    	return &variableTimer{fn: fn, new: c.NewTimer}
    }
    
    // Until takes an arbitrary delay function and runs until cancelled or the condition indicates exit. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/runtime/netpoll_epoll.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 epfd == -1 {
    		return gList{}, 0
    	}
    	var waitms int32
    	if delay < 0 {
    		waitms = -1
    	} else if delay == 0 {
    		waitms = 0
    	} else if delay < 1e6 {
    		waitms = 1
    	} else if delay < 1e15 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/math/big/calibrate_test.go

    	for i := from; i <= to; i += step {
    		baseline := measureSqr(i, nruns, lower)
    		testval := measureSqr(i, nruns, upper)
    		pos := baseline > testval
    		delta := baseline - testval
    		percent := delta * 100 / baseline
    		fmt.Printf("words = %3d deltaT = %10s (%4d%%) is %s better: %v", i, delta, percent, upper, pos)
    		if i == from {
    			initPos = pos
    		}
    		if threshold == 0 && pos != initPos {
    			threshold = i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. src/runtime/netpoll_kqueue.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 kq == -1 {
    		return gList{}, 0
    	}
    	var tp *timespec
    	var ts timespec
    	if delay < 0 {
    		tp = nil
    	} else if delay == 0 {
    		tp = &ts
    	} else {
    		ts.setNsec(delay)
    		if ts.tv_sec > 1e6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top