Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 181 for deltaY (1.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/core/service/ipallocator/controller/repairip.go

    			key, err := cache.MetaNamespaceKeyFunc(new)
    			if err == nil {
    				r.svcQueue.Add(key)
    			}
    		},
    		DeleteFunc: func(obj interface{}) {
    			// IndexerInformer uses a delta queue, therefore for deletes we have to use this
    			// key function.
    			key, err := cache.DeletionHandlingMetaNamespaceKeyFunc(obj)
    			if err == nil {
    				r.svcQueue.Add(key)
    			}
    		},
    	}, interval)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

        }
    
        @Override
        public ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) {
          TrustedListenableFutureTask<@Nullable Void> task =
              TrustedListenableFutureTask.create(command, null);
          ScheduledFuture<?> scheduled = delegate.schedule(task, delay, unit);
          return new ListenableScheduledTask<@Nullable Void>(task, scheduled);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top