Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 181 for deltaY (1.25 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.td

    // attribute.
    def DecomposeResourceApplyGradientDescentOp :
      Pat<
        (TF_ResourceApplyGradientDescentOp:$src_op $resource, $alpha, $delta, BoolAttr:$_),
        (TF_AssignVariableOp
          $resource,
          (TF_SubOp
            (CreateTFReadVariableOp $src_op, $alpha, $resource),
            (TF_MulOp $alpha, $delta)
          ),
          (CreateConstBoolAttrFalse)
        )
      >;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/stats_test.go

    							return err
    						}
    
    						if err := ValidateBucket(c, prom, cltInstance.Config().Service, "source", expectedBuckets); err != nil {
    							return err
    						}
    
    						return nil
    					}, retry.Delay(framework.TelemetryRetryDelay), retry.Timeout(framework.TelemetryRetryTimeout))
    					if err != nil {
    						return err
    					}
    					return nil
    				})
    			}
    			if err := g.Wait(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/runtime/debuglog.go

    			l.allLink = (*dlogger)(unsafe.Pointer(head))
    			if atomic.Casuintptr(headp, head, uintptr(unsafe.Pointer(l))) {
    				break
    			}
    		}
    	}
    
    	// If the time delta is getting too high, write a new sync
    	// packet. We set the limit so we don't write more than 6
    	// bytes of delta in the record header.
    	const deltaLimit = 1<<(3*7) - 1 // ~2ms between sync packets
    	if tick-l.w.tick > deltaLimit || nano-l.w.nano > deltaLimit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top