Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cleanAll (0.17 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    		// Treat nil slices and empty slices as the same (e.g. clusterIPs).
    		cmpopts.EquateEmpty(),
    	}
    
    	// For allocated fields, we want to be able to compare cleanly whether the
    	// input specified values or not.
    	want := tc.svc.DeepCopy()
    	if tc.expectClusterIPs || tc.expectHeadless {
    		if want.Spec.ClusterIP == "" {
    			want.Spec.ClusterIP = got.Spec.ClusterIP
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    		<-bodyClosed
    	}
    
    	if err != nil && cs.sentEndStream {
    		// If the connection is closed immediately after the response is read,
    		// we may be aborted before finishing up here. If the stream was closed
    		// cleanly on both sides, there is no error.
    		select {
    		case <-cs.peerClosed:
    			err = nil
    		default:
    		}
    	}
    	if err != nil {
    		cs.abortStream(err) // possibly redundant, but harmless
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top