Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,567 for rduration (0.16 sec)

  1. istioctl/pkg/metrics/metrics.go

    }
    
    func getLatency(promAPI promv1.API, workloadName, workloadNamespace string, duration time.Duration, quantile float64) (time.Duration, error) {
    	latencyQuery := fmt.Sprintf(`histogram_quantile(%f, sum(rate(%s_bucket{%s=~"%s.*", %s=~"%s.*",reporter="destination"}[%s])) by (le))`,
    		quantile, reqDur, destWorkloadLabel, workloadName, destWorkloadNamespaceLabel, workloadNamespace, duration)
    
    	letency, err := vectorValue(promAPI, latencyQuery)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. manifests/charts/base/crds/crd-all.gen.yaml

                                      - message: must be a valid duration greater than
                                          1ms
                                        rule: duration(self) >= duration('1ms')
                                    maxConnectionDuration:
                                      description: The maximum duration of a connection.
                                      type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  3. internal/config/batch/help.go

    		config.HelpKV{
    			Key:         ReplicationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch replication operation` + defaultHelpPostfix(ReplicationWorkersWait),
    			Optional:    true,
    			Type:        "duration",
    		},
    		config.HelpKV{
    			Key:         KeyRotationWorkersWait,
    			Description: `maximum sleep duration between objects to slow down batch keyrotation operation` + defaultHelpPostfix(KeyRotationWorkersWait),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CachingResult.java

    import javax.annotation.Nullable;
    import java.time.Duration;
    
    public class CachingResult extends UpToDateResult {
    
        private final CachingState cachingState;
    
        public CachingResult(UpToDateResult parent, CachingState cachingState) {
            super(parent);
            this.cachingState = cachingState;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. pkg/backoff/exponential.go

    	b.Reset()
    	return b
    }
    
    func (b ExponentialBackOff) NextBackOff() time.Duration {
    	duration := b.exponentialBackOff.NextBackOff()
    	// always return maxInterval after it reaches MaxElapsedTime
    	if duration == b.exponentialBackOff.Stop {
    		return b.exponentialBackOff.MaxInterval
    	}
    	return duration
    }
    
    func (b ExponentialBackOff) Reset() {
    	b.exponentialBackOff.Reset()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pkg/sleep/sleep.go

    	"time"
    )
    
    // UntilContext sleeps for the given duration, or until the context is complete.
    // Returns true if the sleep completes the full duration
    func UntilContext(ctx context.Context, d time.Duration) bool {
    	return Until(ctx.Done(), d)
    }
    
    // Until sleeps for the given duration, or until the channel is closed.
    // Returns true if the sleep completes the full duration
    func Until(ch <-chan struct{}, d time.Duration) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 14:36:37 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java

          Runnable command, long initialDelay, long period, TimeUnit unit);
    
      /**
       * Duration-based overload of {@link #scheduleAtFixedRate(Runnable, long, long, TimeUnit)}.
       *
       * @since 29.0
       */
      default ListenableScheduledFuture<?> scheduleAtFixedRate(
          Runnable command, Duration initialDelay, Duration period) {
        return scheduleAtFixedRate(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/testing/FakeTicker.java

      public FakeTicker advance(Duration duration) {
        return advance(duration.toNanos());
      }
    
      /**
       * Sets the increment applied to the ticker whenever it is queried.
       *
       * <p>The default behavior is to auto increment by zero. i.e: The ticker is left unchanged when
       * queried.
       */
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 13 18:17:09 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation_test.go

    	type durationCheck struct {
    		duration *durationpb.Duration
    		isValid  bool
    	}
    
    	checks := []durationCheck{
    		{
    			duration: &durationpb.Duration{Seconds: 1},
    			isValid:  true,
    		},
    		{
    			duration: &durationpb.Duration{Seconds: 1, Nanos: -1},
    			isValid:  false,
    		},
    		{
    			duration: &durationpb.Duration{Seconds: -11, Nanos: -1},
    			isValid:  false,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Suppliers.java

      @GwtIncompatible // java.time.Duration
      @SuppressWarnings("Java7ApiChecker") // no more dangerous that wherever the user got the Duration
      @IgnoreJRERequirement
      public static <T extends @Nullable Object> Supplier<T> memoizeWithExpiration(
          Supplier<T> delegate, Duration duration) {
        checkNotNull(delegate);
        // The alternative of `duration.compareTo(Duration.ZERO) > 0` causes J2ObjC trouble.
        checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top