Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for establishKeys (0.43 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. src/container/heap/heap.go

    // use [heap.Push] and [heap.Pop].
    type Interface interface {
    	sort.Interface
    	Push(x any) // add x as element Len()
    	Pop() any   // remove and return element Len() - 1.
    }
    
    // Init establishes the heap invariants required by the other routines in this package.
    // Init is idempotent with respect to the heap invariants
    // and may be called whenever the heap invariants may have been invalidated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonConnector.java

    import org.gradle.launcher.daemon.context.DaemonConnectDetails;
    import org.gradle.launcher.daemon.context.DaemonContext;
    
    import javax.annotation.Nullable;
    
    /**
     * A daemon connector establishes a connection to a daemon.
     */
    public interface DaemonConnector {
    
        /**
         * Attempts to connect to a daemon at the given address.
         *
         * @return A connection to a matching daemon, or null if not running.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. src/log/syslog/syslog.go

    // library syslog function.
    type serverConn interface {
    	writeString(p Priority, hostname, tag, s, nl string) error
    	close() error
    }
    
    type netConn struct {
    	local bool
    	conn  net.Conn
    }
    
    // New establishes a new connection to the system log daemon. Each
    // write to the returned writer sends a log message with the given
    // priority (a combination of the syslog facility and severity) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    	return c.resource
    }
    
    func (c *client) API() api.DevicePluginClient {
    	return c.client
    }
    
    func (c *client) SocketPath() string {
    	return c.socket
    }
    
    // dial establishes the gRPC communication with the registered device plugin. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string) (api.DevicePluginClient, *grpc.ClientConn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    	// before this one on a given package. This analyzer may inspect
    	// the outputs produced by each analyzer in Requires.
    	// The graph over analyzers implied by Requires edges must be acyclic.
    	//
    	// Requires establishes a "horizontal" dependency between
    	// analysis passes (different analyzers, same package).
    	Requires []*Analyzer
    
    	// ResultType is the type of the optional result of the Run function.
    	ResultType reflect.Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. pkg/kubelet/pluginmanager/pluginwatcher/example_handler.go

    	p.m.Lock()
    	defer p.m.Unlock()
    
    	v, ok := p.ExpectedNames[pluginName]
    	if !ok {
    		v = -1
    	}
    
    	return v, ok
    }
    
    // Dial establishes the gRPC communication with the picked up plugin socket. https://godoc.org/google.golang.org/grpc#Dial
    func dial(unixSocketPath string, timeout time.Duration) (registerapi.RegistrationClient, *grpc.ClientConn, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top