Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for oldName (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	expectNoDiff(t, "incorrect first page", []example.Pod{*preset[0].storedObj}, out.Items)
    
    	continueFromSecondItem := out.Continue
    
    	// update /second/bar
    	oldName := preset[2].obj.Name
    	newPod := &example.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: oldName,
    			Labels: map[string]string{
    				"state": "new",
    			},
    		},
    	}
    	if err := store.GuaranteedUpdate(ctx, preset[2].key, preset[2].storedObj, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    		return false
    	}
    
    	// If IdleConnTimeout is set, calculate the oldest
    	// persistConn.idleAt time we're willing to use a cached idle
    	// conn.
    	var oldTime time.Time
    	if t.IdleConnTimeout > 0 {
    		oldTime = time.Now().Add(-t.IdleConnTimeout)
    	}
    
    	// Look for most recently-used idle connection.
    	if list, ok := t.idleConn[w.key]; ok {
    		stop := false
    		delivered := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top