Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 86 for delay (0.04 sec)

  1. tests/integration/pilot/cni_race_test.go

    		if err != nil {
    			return err
    		}
    		if len(pods.Items) > 0 {
    			return errors.New("CNI Daemonset pod still exists after deletion")
    		}
    		return nil
    	}, retry.Delay(1*time.Second), retry.Timeout(80*time.Second))
    }
    
    func deployCNIDaemonset(ctx framework.TestContext, c cluster.Cluster, cniDaemonSet *appsv1.DaemonSet) {
    	deployDaemonSet := appsv1.DaemonSet{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/IntervalController.java

    package org.codelibs.fess.crawler.interval;
    
    public interface IntervalController {
        int PRE_PROCESSING = 1;
    
        int POST_PROCESSING = 2;
    
        int NO_URL_IN_QUEUE = 4;
    
        int WAIT_NEW_URL = 8;
    
        void delay(int type);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 848 bytes
    - Viewed (0)
  3. tests/integration/pilot/multicluster_test.go

    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/tmpl"
    )
    
    var (
    	multiclusterRetryTimeout = retry.Timeout(1 * time.Minute)
    	multiclusterRetryDelay   = retry.Delay(500 * time.Millisecond)
    )
    
    func TestClusterLocal(t *testing.T) {
    	// nolint: staticcheck
    	framework.NewTest(t).
    		RequiresMinClusters(2).
    		RequireIstioVersion("1.11").
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. pilot/pkg/features/tuning.go

    		// 2: 25
    		// 4: 35
    		// 32: 100
    		return min(float64(15+5*procs), 100.0)
    	}()
    
    	DebounceAfter = env.Register(
    		"PILOT_DEBOUNCE_AFTER",
    		100*time.Millisecond,
    		"The delay added to config/registry events for debouncing. This will delay the push by "+
    			"at least this interval. If no change is detected within this period, the push will happen, "+
    			" otherwise we'll keep delaying until things settle, up to a max of PILOT_DEBOUNCE_MAX.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/trace/testdata/generators/go122-fail-first-gen-first.go

    // Regression test for #55160.
    //
    // The issue is that the parser reads ahead to the first batch of the
    // next generation to find generation boundaries, but if it finds an
    // error, it needs to delay handling that error until later. Previously
    // it would handle that error immediately and a totally valid generation
    // would be skipped for parsing and rejected because of an error in a
    // batch in the following generation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. tests/integration/operator/uninstall_test.go

    					if checkErr != nil {
    						return checkErr
    					}
    
    					if exist {
    						return fmt.Errorf("fail to delete iop")
    					}
    
    					return nil
    				}, retry.Timeout(deletionTimeout), retry.Delay(retryDelay))
    			})
    
    			// For negative casse, use default profile, ingressgateway alway connect to istiod
    			// deletion will fail
    			t.NewSubTest("delete-iop-fail").Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. tests/integration/ambient/wasm_test.go

    	ctx.Helper()
    	if len(GetClientInstances()) == 0 {
    		ctx.Fatal("there is no client")
    	}
    	cltInstance := GetClientInstances()[0]
    
    	defaultOptions := []retry.Option{retry.Delay(100 * time.Millisecond), retry.Timeout(200 * time.Second)}
    	httpOpts := echo.CallOptions{
    		To: GetTarget(),
    		Port: echo.Port{
    			Name: "http",
    		},
    		HTTP: echo.HTTP{
    			Path:   "/path",
    			Method: "GET",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top