Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for establishKeys (0.45 sec)

  1. src/crypto/tls/handshake_server.go

    		return err
    	}
    	if hs.sessionState != nil {
    		// The client has included a session ticket and so we do an abbreviated handshake.
    		if err := hs.doResumeHandshake(); err != nil {
    			return err
    		}
    		if err := hs.establishKeys(); err != nil {
    			return err
    		}
    		if err := hs.sendSessionTicket(); err != nil {
    			return err
    		}
    		if err := hs.sendFinished(c.serverFinished[:]); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client.go

    		return err
    	}
    	if err := transcriptMsg(hs.serverHello, &hs.finishedHash); err != nil {
    		return err
    	}
    
    	c.buffering = true
    	c.didResume = isResume
    	if isResume {
    		if err := hs.establishKeys(); err != nil {
    			return err
    		}
    		if err := hs.readSessionTicket(); err != nil {
    			return err
    		}
    		if err := hs.readFinished(c.serverFinished[:]); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  3. pkg/api/testing/serialization_test.go

    		} else {
    			if obj2.ObjectMeta.CreationTimestamp.UnixNano() != parseTimeOrDie("2018-08-30T14:10:58Z").UnixNano() {
    				t.Fatalf("Time stamps do not match")
    			}
    		}
    	}
    }
    
    // TestBadJSONRejection establishes that a JSON object without a kind or with
    // an unknown kind will not be decoded without error.
    func TestBadJSONRejection(t *testing.T) {
    	badJSONMissingKind := []byte(`{ }`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    }
    
    func (g *grpcProxier) proxy(ctx context.Context, addr string) (net.Conn, error) {
    	return g.tunnel.DialContext(ctx, "tcp", addr)
    }
    
    type proxyServerConnector interface {
    	// connect establishes connection to the proxy server, and returns a
    	// proxier based on the connection.
    	//
    	// The provided Context must be non-nil. The context is used for connecting to the proxy only.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/net/http/socks_bundle.go

    const (
    	socksVersion5 = 0x05
    
    	socksAddrTypeIPv4 = 0x01
    	socksAddrTypeFQDN = 0x03
    	socksAddrTypeIPv6 = 0x04
    
    	socksCmdConnect socksCommand = 0x01 // establishes an active-open forward proxy connection
    	sockscmdBind    socksCommand = 0x02 // establishes a passive-open forward proxy connection
    
    	socksAuthMethodNotRequired         socksAuthMethod = 0x00 // no authentication required
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. src/runtime/race.go

    // between goroutines. These inform the race detector about actual synchronization
    // that it can't see for some reason (e.g. synchronization within RaceDisable/RaceEnable
    // sections of code).
    // RaceAcquire establishes a happens-before relation with the preceding
    // RaceReleaseMerge on addr up to and including the last RaceRelease on addr.
    // In terms of the C memory model (C11 §5.1.2.4, §7.17.3),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	err = c.client.Get().
    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // watchList establishes a watch stream with the server and returns the list of CustomResourceDefinitions
    func (c *customResourceDefinitions) watchList(ctx context.Context, opts metav1.ListOptions) (result *v1.CustomResourceDefinitionList, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	err = c.client.Get().
    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // watchList establishes a watch stream with the server and returns the list of CustomResourceDefinitions
    func (c *customResourceDefinitions) watchList(ctx context.Context, opts v1.ListOptions) (result *v1beta1.CustomResourceDefinitionList, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pkg/model/proxy.go

    	//
    	// This field is intended for use in those scenarios where a user needs to
    	// onboard a workload from a VM without relying on auto-registration.
    	//
    	// At runtime, when a proxy establishes an ADS connection to the istiod,
    	// istiod will treat a non-empty value of this field as an indicator
    	// that proxy corresponds to a VM and must be represented by a WorkloadEntry
    	// with a given name.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. src/net/rpc/server.go

    typically it will create a network listener and call [Accept] or, for an HTTP
    listener, [HandleHTTP] and [http.Serve].
    
    A client wishing to use the service establishes a connection and then invokes
    [NewClient] on the connection.  The convenience function [Dial] ([DialHTTP]) performs
    both steps for a raw network connection (an HTTP connection).  The resulting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
Back to top