Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for establishKeys (0.27 sec)

  1. 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)
  2. src/cmd/go/internal/script/state.go

    	if err != nil {
    		return nil, err
    	}
    
    	ctx, cancel := context.WithCancel(ctx)
    
    	// Make a fresh copy of the env slice to avoid aliasing bugs if we ever
    	// start modifying it in place; this also establishes the invariant that
    	// s.env contains no duplicates.
    	env := cleanEnv(initialEnv, absWork)
    
    	envMap := make(map[string]string, len(env))
    
    	// Add entries for ${:} and ${/} to make it easier to write platform-independent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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