Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 471 for Initial (0.15 sec)

  1. pkg/util/async/bounded_frequency_runner_test.go

    	runner := construct("test-runner", obj.F, minInterval, maxInterval, 1, timer)
    	stop := make(chan struct{})
    
    	var upd timerUpdate
    
    	// Start.
    	go runner.Loop(stop)
    	upd = <-timer.updated // wait for initial time to be set to max
    	checkTimer("init", t, upd, true, maxInterval)
    	checkReceiver("init", t, obj, false)
    
    	// Run once, immediately.
    	// rel=0ms
    	runner.Run()
    	waitForRun("first run", t, timer, obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  2. src/bytes/buffer_test.go

    	}
    
    	if string(bytes) != s {
    		t.Errorf("%s: string(buf.Bytes()) == %q, s == %q", testname, string(bytes), s)
    	}
    }
    
    // Fill buf through n writes of string fus.
    // The initial contents of buf corresponds to the string s;
    // the result is the final contents of buf returned as a string.
    func fillString(t *testing.T, testname string, buf *Buffer, s string, n int, fus string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    // longer interested in any resources of the specified type. For Listener and
    // Cluster resource types, there is also a “wildcard” mode, which is triggered
    // when the initial request on the stream for that resource type contains no
    // resource names.
    func IsWildcardTypeURL(typeURL string) bool {
    	switch typeURL {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    			con.sendRequest(req)
    			if !initialRequestsSent.Load() && req.TypeUrl == model.ListenerType {
    				// fire off an initial NDS request
    				if _, f := p.handlers[model.NameTableType]; f {
    					con.sendRequest(&discovery.DiscoveryRequest{
    						TypeUrl: model.NameTableType,
    					})
    				}
    				// fire off an initial PCDS request
    				if _, f := p.handlers[model.ProxyConfigType]; f {
    					con.sendRequest(&discovery.DiscoveryRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/framework_test.go

    // of the test and list of generated events.
    type controllerTest struct {
    	// Name of the test, for logging
    	name string
    	// Initial content of controller volume cache.
    	initialVolumes []*v1.PersistentVolume
    	// Expected content of controller volume cache at the end of the test.
    	expectedVolumes []*v1.PersistentVolume
    	// Initial content of controller claim cache.
    	initialClaims []*v1.PersistentVolumeClaim
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/hcl/LICENSE

    1.4. “Covered Software”
    
         means Source Code Form to which the initial Contributor has attached the
         notice in Exhibit A, the Executable Form of such Source Code Form, and
         Modifications of such Source Code Form, in each case including portions
         thereof.
    
    1.5. “Incompatible With Secondary Licenses”
         means
    
         a. that the initial Contributor has attached the notice described in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/recycle_test.go

    	"k8s.io/klog/v2/ktesting"
    	pvtesting "k8s.io/kubernetes/pkg/controller/volume/persistentvolume/testing"
    )
    
    // Test single call to syncVolume, expecting recycling to happen.
    // 1. Fill in the controller with initial data
    // 2. Call the syncVolume *once*.
    // 3. Compare resulting volumes with expected volumes.
    func TestRecycleSync(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    	runningPod := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. pkg/adsc/adsc.go

    	closed bool
    
    	// NodeID is the node identity sent to Pilot.
    	nodeID string
    
    	watchTime time.Time
    
    	// initialLoad tracks the time to receive the initial configuration.
    	initialLoad time.Duration
    
    	// indicates if the initial LDS request is sent
    	initialLds bool
    
    	// httpListeners contains received listeners with a http_connection_manager filter.
    	httpListeners map[string]*listener.Listener
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/go-multierror/LICENSE

    1.4. “Covered Software”
    
         means Source Code Form to which the initial Contributor has attached the
         notice in Exhibit A, the Executable Form of such Source Code Form, and
         Modifications of such Source Code Form, in each case including portions
         thereof.
    
    1.5. “Incompatible With Secondary Licenses”
         means
    
         a. that the initial Contributor has attached the notice described in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/Kerb5Authenticator.java

            }
            try {
                NegTokenInit tok = new NegTokenInit(initialToken);
                if ( log.isDebugEnabled() ) {
                    log.debug("Have initial token " + tok);
                }
                if ( tok.getMechanisms() != null ) {
                    Set<ASN1ObjectIdentifier> mechs = new HashSet<>(Arrays.asList(tok.getMechanisms()));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
Back to top