Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 553 for delay (0.04 sec)

  1. tests/integration/telemetry/api/istioctl_metrics_test.go

    			retry.UntilSuccessOrFail(t, func() error {
    				if err := SendTraffic(GetClientInstances()[0]); err != nil {
    					return err
    				}
    				return validateDefaultOutput(t, GetTarget().Config().Service)
    			}, retry.Delay(framework.TelemetryRetryDelay), retry.Timeout(framework.TelemetryRetryTimeout))
    		})
    }
    
    func validateDefaultOutput(t framework.TestContext, workload string) error { // nolint:interfacer
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/os/pipe_test.go

    // (See https://go.dev/issue/24164.)
    func testPipeEOF(t *testing.T, r io.ReadCloser, w io.WriteCloser) {
    	// parkDelay is an arbitrary delay we wait for a pipe-reader goroutine to park
    	// before issuing the corresponding write. The test should pass no matter what
    	// delay we use, but with a longer delay is has a higher chance of detecting
    	// poller bugs.
    	parkDelay := 10 * time.Millisecond
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. cluster/gce/gci/node.yaml

          ExecStartPre=/bin/mount --bind /home/kubernetes/bin /home/kubernetes/bin
          ExecStartPre=/bin/mount -o remount,exec /home/kubernetes/bin
          ExecStartPre=/usr/bin/curl --fail --retry 5 --retry-delay 3 --silent --show-error -H "X-Google-Metadata-Request: True" -o /home/kubernetes/bin/configure.sh http://metadata.google.internal/computeMetadata/v1/instance/attributes/configure-sh
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 13 18:38:40 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/revisions/revisions_test.go

    							Check: check.And(
    								check.OK(),
    								check.ReachedTargetClusters(t),
    							),
    						})
    						return check.And(
    							check.NoError(),
    							check.OK()).Check(result, err)
    					}, retry.Delay(time.Millisecond*100))
    				})
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

            // Minimise test flakiness due to possible race conditions with connections closing.
            // Some number of tests will report here, but not fail due to this delay.
            println("Delaying to avoid flakes")
            Thread.sleep(500L)
            println("After delay: " + connectionPool.connectionCount())
          }
    
          connectionPool.evictAll()
          assertEquals(0, connectionPool.connectionCount()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. cluster/gce/gci/configure.sh

          exit 2
          ;;
      esac
    }
    
    # Retries a command forever with a delay between retries.
    # Args:
    #  $1    : delay between retries, in seconds.
    #  $2... : the command to run.
    function retry-forever {
      local -r delay="$1"
      shift 1
    
      until "$@"; do
        echo "== $* failed, retrying after ${delay}s"
        sleep "${delay}"
      done
    }
    
    # Initializes variables used by the log-* functions.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  8. pkg/ctrlz/assets/static/js/bootstrap-4.0.0.min.js

    gger()||(clearTimeout(n._timeout),n._hoverState=d,n.config.delay&&n.config.delay.hide?n._timeout=setTimeout(function(){n._hoverState===d&&n.hide()},n.config.delay.hide):n.hide())},I._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},I._getConfig=function(n){return"number"==typeof(n=r({},this.constructor.Default,t(this.element).data(),n)).delay&&(n.delay={show:n.delay,hide:n.delay}),"number"==typeof n.title&&(n.title=n.title.toString()),"number"==typeof...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 47.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/filters/waitgroup.go

    			return
    		}
    
    		if longRunning(req, requestInfo) {
    			handler.ServeHTTP(w, req)
    			return
    		}
    
    		if err := wg.Add(1); err != nil {
    			// shutdown delay duration has elapsed and SafeWaitGroup.Wait has been invoked,
    			// this means 'WithRetryAfter' has started sending Retry-After response.
    			// we are going to exempt the same set of requests that WithRetryAfter are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 10 21:18:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/InterruptionUtil.java

            }
            interruptee.interrupt();
          }
        }
    
        void stopInterrupting() {
          shouldStop = true;
        }
      }
    
      /** Interrupts the current thread after sleeping for the specified delay. */
      static void requestInterruptIn(final long time, final TimeUnit unit) {
        checkNotNull(unit);
        final Thread interruptee = Thread.currentThread();
        new Thread(
                new Runnable() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.4K bytes
    - Viewed (0)
Back to top