Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for establishKeys (0.18 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/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)
  4. 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)
  5. 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)
  6. cmd/kubeadm/app/util/runtime/runtime.go

    		criSocket: criSocket,
    	}
    }
    
    // SetImpl can be used to set the internal implementation for testing purposes.
    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    	runtimeService, err := runtime.impl.NewRemoteRuntimeService(runtime.criSocket, defaultTimeout)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	err = c.client.Get().
    		Namespace(c.ns).
    		Resource("examples").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // watchList establishes a watch stream with the server and returns the list of Examples
    func (c *examples) watchList(ctx context.Context, opts metav1.ListOptions) (result *v1.ExampleList, err error) {
    	var timeout time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top