Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for establishKeys (0.31 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/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)
  9. 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)
  10. pkg/kubelet/pluginmanager/operationexecutor/operation_generator.go

    		return fmt.Errorf("%s: %w", errStr, err)
    	}
    
    	if errStr != "" {
    		return errors.New(errStr)
    	}
    
    	return nil
    }
    
    // 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: Sat Mar 16 14:21:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top