Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newErrs (0.11 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    	if manager.queue.Len() != 0 {
    		t.Fatal("Unexpected item in the queue")
    	}
    
    	newRS := oldRS.DeepCopy()
    	newRS.UID = uuid.NewUUID()
    	newRS, err = client.AppsV1().ReplicaSets(newRS.Namespace).Create(tCtx, newRS, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Sanity check
    	if newRS.UID == oldRS.UID {
    		t.Fatal("New RS has the same UID as the old one!")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    				defer close(signalChan)
    
    				buf := make([]byte, 256)
    				n, err := client.Read(buf)
    
    				if test.checkRenegotiationError != nil {
    					newErr := test.checkRenegotiationError(i, err)
    					if err != nil && newErr == nil {
    						return
    					}
    					err = newErr
    				}
    
    				if err != nil {
    					t.Errorf("Client.Read failed after renegotiation #%d: %s", i, err)
    					return
    				}
    
    				buf = buf[:n]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    		// transitive dependencies.
    
    		newRS, rsErr := updateRoots(ctx, rs.direct, rs, nil, nil, false)
    		if rsErr != nil {
    			// Failed to update roots, perhaps because of an error in a transitive
    			// dependency needed for the update. Return the original Requirements
    			// instead.
    			return rs, mg, rsErr
    		}
    		rs = newRS
    		mg, mgErr = rs.Graph(ctx)
    	}
    
    	return rs, mg, mgErr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top