Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 183 for deltaY (0.28 sec)

  1. 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)
  2. 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)
  3. tests/integration/operator/switch_cr_test.go

    						return fmt.Errorf("don't got operator deployment %s from cluster, expected not to be removed", dp.Name)
    					}
    				}
    				return nil
    			}, retry.Timeout(retryTimeOut), retry.Delay(retryDelay))
    
    			// test operator remove command by purge
    			scopes.Framework.Infof("checking operator remove command")
    			removeCmd = []string{
    				"operator", "remove",
    				"--skip-confirmation",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  4. pilot/pkg/features/pilot.go

    	).Get()
    
    	// EnableUnsafeDeltaTest enables runtime checks to test Delta XDS efficiency. This should never be enabled in
    	// production.
    	EnableUnsafeDeltaTest = env.Register(
    		"UNSAFE_PILOT_ENABLE_DELTA_TEST",
    		false,
    		"If enabled, addition runtime tests for Delta XDS efficiency are added. "+
    			"These checks are extremely expensive, so this should be used only for testing, not production.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache.go

    	gracePeriod := time.Duration((graceRatio) * float64(secretLifeTime))
    	delay := time.Until(secret.ExpireTime.Add(-gracePeriod))
    	if delay < 0 {
    		delay = 0
    	}
    	return delay
    }
    
    func (sc *SecretManagerClient) registerSecret(item security.SecretItem) {
    	delay := rotateTime(item, sc.configOptions.SecretRotationGracePeriodRatio)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/context.go

    }
    
    // XdsDeltaResourceGenerator generates Sotw and delta resources.
    type XdsDeltaResourceGenerator interface {
    	XdsResourceGenerator
    	// GenerateDeltas returns the changed and removed resources, along with whether or not delta was actually used.
    	GenerateDeltas(proxy *Proxy, req *PushRequest, w *WatchedResource) (Resources, DeletedResources, XdsLogDetails, bool, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  7. 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)
  8. 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)
  9. 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)
  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