Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for eventual (0.31 sec)

  1. pilot/pkg/bootstrap/server_test.go

    		t.Fatalf("WriteFile(%v) failed: %v", tlsOptions.KeyFile, err)
    	}
    
    	g := NewWithT(t)
    
    	// Validate that istiod cert is updated.
    	g.Eventually(func() bool {
    		return checkCert(t, s, testcerts.RotatedCert, testcerts.RotatedKey)
    	}, "10s", "100ms").Should(BeTrue())
    }
    
    func TestNewServer(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    	}
    	return err
    }
    
    // processDeltaRequest is handling one request. This is currently called from the 'main' thread, which also
    // handles 'push' requests and close - the code will eventually call the 'push' code, and it needs more mutex
    // protection. Original code avoided the mutexes by doing both 'push' and 'process requests' in same thread.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	// Accepted: is the configuration valid. We only have errors in listeners, and the status is not supposed to
    	// be tied to listeners, so this is always accepted
    	// Programmed: is the data plane "ready" (note: eventually consistent)
    	gatewayConditions := map[string]*condition{
    		string(k8s.GatewayConditionAccepted): {
    			reason:  string(k8s.GatewayReasonAccepted),
    			message: "Resource accepted",
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top