Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for resumption (0.15 sec)

  1. src/crypto/tls/handshake_client_test.go

    		t.Errorf("client ConnectionState contained unexpected OCSPResponse after resumption: wanted %v, got %v",
    			serverConfig.Certificates[0].OCSPStaple, ccs.OCSPResponse)
    	}
    	if !reflect.DeepEqual(ccs.SignedCertificateTimestamps, oldSCTs) {
    		t.Errorf("client ConnectionState contained unexpected SignedCertificateTimestamps after resumption: wanted %v, got %v",
    			oldSCTs, ccs.SignedCertificateTimestamps)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    				t.Fatal(err)
    			}
    			if !cs.DidResume {
    				t.Error("expected resumption")
    			}
    
    			if serverVerifyPeerCertificates {
    				t.Error("VerifyPeerCertificates got called on the server on resumption")
    			}
    			if clientVerifyPeerCertificates {
    				t.Error("VerifyPeerCertificates got called on the client on resumption")
    			}
    			if !serverVerifyConnection {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    // by a client to resume a TLS session with a given server. ClientSessionCache
    // implementations should expect to be called concurrently from different
    // goroutines. Up to TLS 1.2, only ticket-based resumption is supported, not
    // SessionID-based resumption. In TLS 1.3 they were merged into PSK modes, which
    // are supported via this interface.
    type ClientSessionCache interface {
    	// Get searches for a ClientSessionState associated with the given key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/crypto/tls/conn.go

    	// connection so far. If renegotiation is disabled then this is either
    	// zero or one.
    	handshakes       int
    	extMasterSecret  bool
    	didResume        bool // whether this connection was a session resumption
    	didHRR           bool // whether a HelloRetryRequest was sent/received
    	cipherSuite      uint16
    	curveID          CurveID
    	ocspResponse     []byte   // stapled OCSP response
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			if !ok {
    				return
    			}
    			// Don't dispatch bookmarks coming from the storage layer.
    			// They can be very frequent (even to the level of subseconds)
    			// to allow efficient watch resumption on kube-apiserver restarts,
    			// and propagating them down may overload the whole system.
    			//
    			// TODO: If at some point we decide the performance and scalability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. cmd/erasure-object.go

    func (er erasureObjects) deleteObjectVersion(ctx context.Context, bucket, object string, fi FileInfo, forceDelMarker bool) error {
    	disks := er.getDisks()
    	// Assume (N/2 + 1) quorum for Delete()
    	// this is a theoretical assumption such that
    	// for delete's we do not need to honor storage
    	// class for objects that have reduced quorum
    	// due to storage class - this only needs to be honored
    	// for Read() requests alone that we already do.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    // this ratio and multiplying it by heapInUse at the end of the last GC, which
    // allows us to account for this additional fragmentation. Note that this
    // procedure makes the assumption that the degree of fragmentation won't change
    // dramatically over the next GC cycle. Overestimating the amount of
    // fragmentation simply results in higher memory use, which will be accounted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    	isL7Scheme := opt.Scheme == scheme.HTTP || opt.Scheme == scheme.GRPC || opt.Scheme == scheme.WebSocket
    	return (s || d) && isL7Scheme
    }
    
    // Assumption is ambient test suite sidecars will support HBONE
    // If the assumption is incorrect hboneClient may return invalid result
    func hboneClient(instance echo.Instance) bool {
    	return instance.Config().ZTunnelCaptured()
    }
    
    func TestServices(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

        // Use quantization dimension = 3 that corresponds to the output channel
        // dimension, assuming the filter format is `[0, 1, i, o]`.
        // TODO: b/291029962 - Lift the assumption above and retrieve the
        // quantization dimension from the `dimension_numbers` attribute.
        UniformQuantizedPerAxisType filter_quantized_element_type =
            CreateI8F32UniformQuantizedPerAxisType(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		EquivalentResourceMapper: a.group.EquivalentResourceRegistry,
    
    		// TODO: Check for the interface on storage
    		TableConvertor: tableProvider,
    
    		// TODO: This seems wrong for cross-group subresources. It makes an assumption that a subresource and its parent are in the same group version. Revisit this.
    		Resource:    a.group.GroupVersion.WithResource(resource),
    		Subresource: subresource,
    		Kind:        fqKindToRegister,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top