Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 353 for deltaY (2.01 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

                  }
                }
    
              val peerInitialWindowSize = newPeerSettings.initialWindowSize.toLong()
              delta = peerInitialWindowSize - previousPeerSettings.initialWindowSize.toLong()
              streamsToNotify =
                when {
                  delta == 0L || streams.isEmpty() -> null // No adjustment is necessary.
                  else -> streams.values.toTypedArray()
                }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

          notifyStopped();
        }
      }
    
      /*
       * A NoOp service that will delay the startup and shutdown notification for a configurable amount
       * of time.
       */
      private static class NoOpDelayedService extends NoOpService {
        private long delay;
    
        public NoOpDelayedService(long delay) {
          this.delay = delay;
        }
    
        @Override
        protected void doStart() {
          new Thread() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. cmd/batch-expire.go

    	vc, _ := globalBucketVersioningSys.Get(r.Bucket)
    	retryAttempts := r.Retry.Attempts
    	delay := job.Expire.Retry.Delay
    	if delay == 0 {
    		delay = batchExpireJobDefaultRetryDelay
    	}
    
    	var i int
    	for toExpire := range expireCh {
    		select {
    		case <-ctx.Done():
    			return
    		default:
    		}
    		if i > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route_internal_test.go

    func TestTranslateFault(t *testing.T) {
    	cases := []struct {
    		name  string
    		fault *networking.HTTPFaultInjection
    		want  *xdshttpfault.HTTPFault
    	}{
    		{
    			name: "http delay",
    			fault: &networking.HTTPFaultInjection{
    				Delay: &networking.HTTPFaultInjection_Delay{
    					HttpDelayType: &networking.HTTPFaultInjection_Delay_FixedDelay{
    						FixedDelay: &durationpb.Duration{
    							Seconds: int64(3),
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	}
    
    	pl.updateWithPod(s, podInfoToRemove.Pod, podToSchedule, nodeInfo.Node(), -1)
    	return nil
    }
    
    func (pl *PodTopologySpread) updateWithPod(s *preFilterState, updatedPod, preemptorPod *v1.Pod, node *v1.Node, delta int) {
    	if s == nil || updatedPod.Namespace != preemptorPod.Namespace || node == nil {
    		return
    	}
    	if !nodeLabelsMatchSpreadConstraints(node.Labels, s.Constraints) {
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          r.classList.add('not-inlined');
        }
    
        // Positive/negative indicator for diff mode.
        if (diff) {
          const delta = box.sumpos - box.sumneg;
          const partWidth = xscale * Math.abs(delta);
          if (partWidth >= MIN_WIDTH) {
    	r.appendChild(makeRect((delta < 0 ? 'negative' : 'positive'),
    			       0, 0, partWidth, ROW-1));
          }
        }
    
        // Label
        if (box.width >= MIN_TEXT_WIDTH) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multisets.java

        checkNonnegative(count, "count");
    
        int oldCount = self.count(element);
    
        int delta = count - oldCount;
        if (delta > 0) {
          self.add(element, delta);
        } else if (delta < 0) {
          self.remove(element, -delta);
        }
    
        return oldCount;
      }
    
      /** An implementation of {@link Multiset#setCount(Object, int, int)}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multisets.java

        checkNonnegative(count, "count");
    
        int oldCount = self.count(element);
    
        int delta = count - oldCount;
        if (delta > 0) {
          self.add(element, delta);
        } else if (delta < 0) {
          self.remove(element, -delta);
        }
    
        return oldCount;
      }
    
      /** An implementation of {@link Multiset#setCount(Object, int, int)}. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    	}
    	if b.Duration > 0 {
    		return &fixedTimer{new: internalClock.NewTicker, interval: b.Duration}
    	}
    	return newNoopTimer()
    }
    
    // delay implements the core delay algorithm used in this package.
    func delay(steps int, duration, cap time.Duration, factor, jitter float64) (_ time.Duration, next time.Duration, nextSteps int) {
    	// when steps is non-positive, do not alter the base duration
    	if steps < 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. pkg/test/echo/server/endpoint/http.go

    	body := bytes.Buffer{}
    
    	if err := r.ParseForm(); err != nil {
    		writeError(&body, "ParseForm() error: "+err.Error())
    	}
    
    	// If the request has form ?delay=[:duration] wait for duration
    	// For example, ?delay=10s will cause the response to wait 10s before responding
    	if err := delayResponse(r); err != nil {
    		writeError(&body, "error delaying response error: "+err.Error())
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top