Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 353 for deltaY (0.93 sec)

  1. src/runtime/time.go

    	// so reads are allowed when holding either of the two mutexes.
    	//
    	// The delay argument is nanotime() - t.when, meaning the delay in ns between
    	// when the timer should have gone off and now. Normally that amount is
    	// small enough not to matter, but for channel timers that are fed lazily,
    	// the delay can be arbitrarily long; package time subtracts it out to make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

     * additional configuration, permits will be distributed at a fixed rate, defined in terms of
     * permits per second. Permits will be distributed smoothly, with the delay between individual
     * permits being adjusted to ensure that the configured rate is maintained.
     *
     * <p>It is possible to configure a {@code RateLimiter} to have a warmup period during which time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"to spread out load.")
    
    	fs.DurationVar(&s.ShutdownDelayDuration, "shutdown-delay-duration", s.ShutdownDelayDuration, ""+
    		"Time to delay the termination. During that time the server keeps serving requests normally. The endpoints /healthz and /livez "+
    		"will return success, but /readyz immediately returns failure. Graceful termination starts after this delay "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/array_grad.cc

      auto axis_dims = Size(scope, outer_shape);
    
      Output outer_batches_indices = Range(scope, 0, batch_dims, /*delta=*/1);
      Output batch_axis_indices = Range(scope, batch_dims, axis_dims, /*delta=*/1);
      Output inner_axes_indices =
          Range(scope, Add(scope, axis_dims, 1), values_dims, /*delta=*/1);
      Output axis_dims_expand = ExpandDims(scope, axis_dims, 0);
    
      auto values = Reshape(scope, grad_inputs[0], values_shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 10 23:33:32 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  5. src/runtime/signal_windows.go

    	// sigpanic call to make it look like that. Instead, just
    	// overwrite the PC. (See issue #35773)
    	if r.ip() != 0 && r.ip() != abi.FuncPCABI0(asyncPreempt) {
    		sp := unsafe.Pointer(r.sp())
    		delta := uintptr(sys.StackAlign)
    		sp = add(sp, -delta)
    		r.set_sp(uintptr(sp))
    		if usesLR {
    			*((*uintptr)(sp)) = r.lr()
    			r.set_lr(r.ip())
    		} else {
    			*((*uintptr)(sp)) = r.ip()
    		}
    	}
    	r.set_ip(abi.FuncPCABI0(sigpanic0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/go/token/position_test.go

    	src := make([]byte, size)
    	for _, offs := range lines {
    		if offs > 0 {
    			src[offs-1] = '\n'
    		}
    	}
    	return src
    }
    
    func TestPositions(t *testing.T) {
    	const delta = 7 // a non-zero base offset increment
    	fset := NewFileSet()
    	for _, test := range tests {
    		// verify consistency of test case
    		if test.source != nil && len(test.source) != test.size {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    func (e *quotaEvaluator) checkQuotas(quotas []corev1.ResourceQuota, admissionAttributes []*admissionWaiter, remainingRetries int) {
    	// yet another copy to compare against originals to see if we actually have deltas
    	originalQuotas, err := copyQuotas(quotas)
    	if err != nil {
    		utilruntime.HandleError(err)
    		return
    	}
    
    	atLeastOneChanged := false
    	for i := range admissionAttributes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

          #
          # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
          # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
          # and doesn't spam the readiness endpoint too much
          #
          # If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/obj0.go

    				// We don't treat ABFPT and ABFPF as branches here,
    				// so that we will always fill nop (0x0) in their
    				// delay slot during assembly.
    				// This is to workaround a kernel FPU emulator bug
    				// where it uses the user stack to simulate the
    				// instruction in the delay slot if it's not 0x0,
    				// and somehow that leads to SIGSEGV when the kernel
    				// jump to the stack.
    				p.Mark |= SYNC
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  10. pkg/kube/client.go

    		}
    	}()
    	for {
    		select {
    		case <-stop:
    			return false
    		default:
    		}
    		attempt++
    		res := f()
    		if res {
    			return true
    		}
    		delay *= 2
    		if delay > max {
    			delay = max
    		}
    		log.WithLabels("name", name, "attempt", attempt, "time", time.Since(t0)).Debugf("waiting for sync...")
    		if attempt%50 == 0 {
    			// Log every 50th attempt (5s) at info, to avoid too much noisy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top