Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for delay (0.06 sec)

  1. pkg/istio-agent/xds_proxy_delta_test.go

    		if proxy.ecdsLastNonce.Load() == n1.Load() {
    			return errors.New("last process nonce has not been updated. no ecds ack/nack is received yet")
    		}
    		return nil
    	}, retry.Timeout(time.Second), retry.Delay(time.Millisecond))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. tests/integration/ambient/cacert_rotation_test.go

    			newSecret = updatedCert
    			t.Logf("workload cert is updated")
    			return true
    		}
    
    		return false
    	}, retry.Timeout(5*time.Minute), retry.Delay(10*time.Second))
    	return newSecret
    }
    
    func verifyWorkloadCert(t framework.TestContext, workloadSecret *configdump.CertsDump, caX590 *x509.Certificate) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	t.Helper()
    	assert.EventuallyEqual(t, func() int {
    		return len(m.component.All())
    	}, expectedControllerCount, retry.Message(timeoutName), retry.Delay(time.Millisecond*10), retry.Timeout(time.Second*5))
    }
    
    func initController(client kube.CLIClient, ns string, stop <-chan struct{}) *multicluster.Controller {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. tests/integration/security/cacert_rotation/main_test.go

    			lastUpdateTime = updateTime
    			t.Logf("workload cert is updated, last update time: %v", updateTime)
    			return true
    		}
    
    		return false
    	}, retry.Timeout(5*time.Minute), retry.Delay(1*time.Second))
    	return lastUpdateTime
    }
    
    func getPodID(i echo.Instance) (string, error) {
    	wls, err := i.Workloads()
    	if err != nil {
    		return "", nil
    	}
    
    	for _, wl := range wls {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/struct.go

    			// Because we have a name, typ must be of the form T or *T, where T is the name
    			// of a (named or alias) type, and t (= deref(typ)) must be the type of T.
    			// We must delay this check to the end because we don't want to instantiate
    			// (via under(t)) a possibly incomplete type.
    			embeddedTyp := typ // for closure below
    			embeddedPos := pos
    			check.later(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/go/types/struct.go

    			// Because we have a name, typ must be of the form T or *T, where T is the name
    			// of a (named or alias) type, and t (= deref(typ)) must be the type of T.
    			// We must delay this check to the end because we don't want to instantiate
    			// (via under(t)) a possibly incomplete type.
    
    			// for use in the closure below
    			embeddedTyp := typ
    			embeddedPos := f.Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. tests/integration/pilot/vm_test.go

    						disconnectProxy(t, currentPilot, autoVM)
    						return errors.New("expected WorkloadEntry to be updated by other pilot")
    					}
    					return nil
    				}, retry.Delay(5*time.Second))
    			})
    			t.NewSubTest("disconnect deletes WorkloadEntry").Run(func(t framework.TestContext) {
    				d := fmt.Sprintf("%s-%s", autoVM.Config().Service, "v1")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/os/fifo_test.go

    	}
    	defer w.Close()
    
    	data := "Hello Gophers!"
    	if _, err := w.WriteString(data); err != nil {
    		t.Fatalf("Error writing to fifo: %v", err)
    	}
    
    	// Close the writer after a short delay to open a gap for the reader
    	// of FIFO to fall into polling. See https://go.dev/issue/66239#issuecomment-1987620476
    	time.AfterFunc(200*time.Millisecond, func() {
    		if err := w.Close(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. tests/integration/security/ca_custom_root/secure_naming_test.go

    			// is used for data plane to control plane TLS authentication.
    			retry.UntilSuccessOrFail(t, func() error {
    				return checkCACert(t, testNamespace)
    			}, retry.Delay(time.Second), retry.Timeout(10*time.Second))
    			to := match.Namespace(testNamespace).GetMatches(apps.EchoNamespace.B)
    			for _, cluster := range t.Clusters() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/controller/namespace/namespace_controller.go

    		return
    	}
    
    	namespace := obj.(*v1.Namespace)
    	// don't queue if we aren't deleted
    	if namespace.DeletionTimestamp == nil || namespace.DeletionTimestamp.IsZero() {
    		return
    	}
    
    	// delay processing namespace events to allow HA api servers to observe namespace deletion,
    	// and HA etcd servers to observe last minute object creations inside the namespace
    	nm.queue.AddAfter(key, namespaceDeletionGracePeriod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top