Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for establishKeys (0.77 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top