Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for spent (0.05 sec)

  1. src/crypto/tls/common.go

    	NegotiatedProtocolIsMutual bool
    
    	// ServerName is the value of the Server Name Indication extension sent by
    	// the client. It's available both on the server and on the client side.
    	ServerName string
    
    	// PeerCertificates are the parsed certificates sent by the peer, in the
    	// order in which they were sent. The first element is the leaf certificate
    	// that the connection is verified against.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	hand      bytes.Buffer // handshake data waiting to be read
    	buffering bool         // whether records are buffered in sendBuf
    	sendBuf   []byte       // a buffer of records waiting to be sent
    
    	// bytesSent counts the bytes of application data sent.
    	// packetsSent counts packets.
    	bytesSent   int64
    	packetsSent int64
    
    	// retryCount counts the number of consecutive non-advancing records
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter_test.go

    			}
    			if vol.VolumeHandle != csiMounter.volumeID {
    				t.Error("volumeHandle not sent to CSI driver properly")
    			}
    
    			devicePath, err := makeDeviceMountPath(plug, csiMounter.spec)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if vol.DeviceMountPath != devicePath {
    				t.Errorf("DeviceMountPath not sent properly to CSI driver: %s, %s", vol.DeviceMountPath, devicePath)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    	expectedErr := "tls: server sent certificate containing RSA key larger than 8192 bits"
    	err := c.verifyServerCertificate([][]byte{testCert.Bytes})
    	if err == nil || err.Error() != expectedErr {
    		t.Errorf("Conn.verifyServerCertificate unexpected error: want %q, got %q", expectedErr, err)
    	}
    
    	expectedErr = "tls: client sent certificate containing RSA key larger than 8192 bits"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    	// doesn't know what content it is going to send--the ResponseWriter is modifying
    	// the bytes sent.
    	//
    	// Range requests are always going to be broken in this scenario,
    	// but verify that we can serve non-range requests correctly.
    	filename := "index.html"
    	contents := []byte("contents will be sent with Content-Encoding: gzip")
    	fsys := fstest.MapFS{
    		filename: {Data: contents},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy_test.go

    			want: 123,
    		},
    		{
    			name: "server-sent events overrides non-zero",
    			res: &http.Response{
    				Header: http.Header{
    					"Content-Type": {"text/event-stream"},
    				},
    			},
    			p:    &ReverseProxy{FlushInterval: 123},
    			want: -1,
    		},
    		{
    			name: "server-sent events overrides zero",
    			res: &http.Response{
    				Header: http.Header{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

      }
    
      /**
       * Webservers may set the initial window size to zero, which is a special case because it means
       * that we have to flush headers immediately before any request body can be sent.
       * https://github.com/square/okhttp/issues/2543
       */
      @Test fun peerSetsZeroFlowControl() {
        peer.setClient(true)
    
        // Write the mocking script.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  8. cmd/test-utils_test.go

    // need a sample HTTP request to be sent as argument so that the relevant handler is called, the handler registration is expected
    // to be done since its called from within the API handler tests, the reference to the registered HTTP handler has to be sent
    // as an argument.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    									// If request is sent before service is processed it will hit 10s timeout, so fail faster
    									Timeout: time.Millisecond * 500,
    								})
    							})
    					})
    				}
    			}
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal.go

    		return
    	}
    
    	// Requests are always added to queue with resyncPeriod delay.  If there's already
    	// request for the HPA in the queue then a new request is always dropped. Requests spend resync
    	// interval in queue so HPAs are processed every resync interval.
    	a.queue.AddRateLimited(key)
    
    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top