Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 553 for delay (0.08 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. src/cmd/go/testdata/script/test2json_interrupt.txt

    					t.Fatal(err)
    				}
    				if p, err := os.FindProcess(i); err == nil {
    					p.Signal(os.Interrupt)
    					sentInterrupt = true // Only send interrupts once.
    				}
    			}
    		}
    		time.Sleep(1 * time.Millisecond)  // Delay the fuzzer a bit to avoid wasting CPU.
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 08 03:52:44 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. docs/batch-jobs/README.md

    	  token: "Bearer xxxxx" # optional authentication token for the notification endpoint
    
    	retry:
    	  attempts: 10 # number of retries for the job before giving up
    	  delay: "500ms" # least amount of delay between each retry
    ```
    
    You can create and run multiple 'replication' jobs at a time there are no predefined limits set.
    
    ## Batch Jobs Terminology
    
    ### Job
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Oct 06 06:00:43 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. pilot/pkg/model/network_test.go

    		// addresses should be updated
    		retry.UntilOrFail(t, func() bool {
    			return !reflect.DeepEqual(env.NetworkManager.AllGateways(), gateways)
    		}, retry.Timeout(10*model.MinGatewayTTL), retry.Delay(time.Millisecond*10))
    		xdsUpdater.WaitOrFail(t, "xds full")
    	})
    
    	workingDNSServer.setHosts(make(sets.String))
    	t.Run("no answer", func(t *testing.T) {
    		assert.EventuallyEqual(t, func() int {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/readme-templates/native-library-body.adoc.template

    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    The `build` task compiles the ${language.raw} sources, links the object files into a shared library, and runs the tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. tests/integration/ambient/untaint/untaint_test.go

    					for _, taint := range node.Spec.Taints {
    						if taint.Key == "cni.istio.io/not-ready" {
    							return fmt.Errorf("node %v still has taint %v", node.Name, taint)
    						}
    					}
    				}
    				return nil
    			}, retry.Delay(1*time.Second), retry.Timeout(80*time.Second))
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    						}
    						if !tracing.VerifyEchoTraces(t, appNsInst.Name(), cluster.Name(), traces) {
    							return errors.New("cannot find expected traces")
    						}
    						return nil
    					}, retry.Delay(3*time.Second), retry.Timeout(80*time.Second))
    				})
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/healthz_test.go

    */
    
    package server
    
    import (
    	"testing"
    	"time"
    
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func TestDelayedHealthCheck(t *testing.T) {
    	t.Run("test that liveness check returns true until the delay has elapsed", func(t *testing.T) {
    		t0 := time.Unix(0, 0)
    		c := testingclock.NewFakeClock(t0)
    		doneCh := make(chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/monitoring.go

    	ldsSendErrPushes = pushes.With(typeTag.Value("lds_senderr"))
    	rdsSendErrPushes = pushes.With(typeTag.Value("rds_senderr"))
    
    	debounceTime = monitoring.NewDistribution(
    		"pilot_debounce_time",
    		"Delay in seconds between the first config enters debouncing and the merged push request is pushed into the push queue.",
    		[]float64{.01, .1, 1, 3, 5, 10, 20, 30},
    	)
    
    	pushContextInitTime = monitoring.NewDistribution(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pkg/kube/rpc_creds_test.go

    	}
    
    	var m3 map[string]string
    	retry.UntilOrFail(t,
    		func() bool {
    			m3, err = perCred.GetRequestMetadata(ctx)
    			return err == nil && !reflect.DeepEqual(m1, m3)
    		},
    		retry.Delay(refreshSeconds*time.Second),
    		retry.Timeout(expirationSeconds*time.Second),
    	)
    	if reflect.DeepEqual(m1, m3) {
    		t.Fatalf("Unexpectedly not getting a new token")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 16 06:24:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top