Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for bidirectional (0.57 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/core.go

    package bidi
    
    import (
    	"fmt"
    	"log"
    )
    
    // This implementation is a port based on the reference implementation found at:
    // https://www.unicode.org/Public/PROGRAMS/BidiReferenceJava/
    //
    // described in Unicode Bidirectional Algorithm (UAX #9).
    //
    // Input:
    // There are two levels of input to the algorithm, since clients may prefer to
    // supply some information from out-of-band sources rather than relying on the
    // default behavior.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  2. src/internal/reflectlite/type.go

    	}
    
    	// Composite types.
    	switch kind {
    	case abi.Array:
    		return T.Len() == V.Len() && haveIdenticalType(T.Elem(), V.Elem(), cmpTags)
    
    	case abi.Chan:
    		// Special case:
    		// x is a bidirectional channel value, T is a channel type,
    		// and x's type V and T have identical element types.
    		if V.ChanDir() == abi.BothDir && haveIdenticalType(T.Elem(), V.Elem(), cmpTags) {
    			return true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    		if _, err = requestHijackedConn.Write(rawResponse); err != nil {
    			utilruntime.HandleError(fmt.Errorf("Error proxying response from backend to client: %v", err))
    		}
    	}
    
    	// Proxy the connection. This is bidirectional, so we need a goroutine
    	// to copy in each direction. Once one side of the connection exits, we
    	// exit the function which performs cleanup and in the process closes
    	// the other half of the connection in the defer.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

    import okhttp3.internal.toHeaderList
    import okio.AsyncTimeout
    import okio.Buffer
    import okio.BufferedSource
    import okio.Sink
    import okio.Source
    import okio.Timeout
    
    /** A logical bidirectional stream. */
    @Suppress("NAME_SHADOWING")
    class Http2Stream internal constructor(
      val id: Int,
      val connection: Http2Connection,
      outFinished: Boolean,
      inFinished: Boolean,
      headers: Headers?,
    ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  5. architecture/networking/pilot.md

    ### Config Serving
    
    Config serving is the layer that actually accepts proxy clients, connected over bidirectional gRPC streams, and serve them the required configuration.
    
    We will have two triggers for sending config - requests and pushes.
    
    #### Requests
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/join.go

    		Run 'kubectl get nodes' to see this node join the cluster.
    
    		`)))
    
    	joinLongDescription = dedent.Dedent(`
    		When joining a kubeadm initialized cluster, we need to establish
    		bidirectional trust. This is split into discovery (having the Node
    		trust the Kubernetes Control Plane) and TLS bootstrap (having the
    		Kubernetes Control Plane trust the Node).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. samples/security/spire/spire-quickstart.yaml

                - mountPath: /spiffe-csi
                  name: spiffe-csi-socket-dir
                # The volume containing mount points for containers.
                - mountPath: /var/lib/kubelet/pods
                  mountPropagation: Bidirectional
                  name: mountpoint-dir
              securityContext:
                privileged: true
            # This container runs the CSI Node Driver Registrar which takes care
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  8. internal/grid/handlers.go

    	// Buffers sent on out can not be referenced once sent.
    	StreamHandlerFn func(ctx context.Context, payload []byte, in <-chan []byte, out chan<- []byte) *RemoteErr
    
    	// StreamHandler handles fully bidirectional streams,
    	// There is flow control in both directions.
    	StreamHandler struct {
    		// Handle an incoming request. Initial payload is sent.
    		// Additional input packets (if any) are streamed to request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/subr.go

    	}
    
    	if src.IsInterface() && dst.Kind() != types.TBLANK {
    		var why string
    		if Implements(dst, src) {
    			why = ": need type assertion"
    		}
    		return ir.OXXX, why
    	}
    
    	// 4. src is a bidirectional channel value, dst is a channel type,
    	// src and dst have identical element types, and
    	// either src or dst is not a named type.
    	if src.IsChan() && src.ChanDir() == types.Cboth && dst.IsChan() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/syscall_darwin.go

    	return unsafe.Pointer(&sa.raw), SizeofSockaddrCtl, nil
    }
    
    // SockaddrVM implements the Sockaddr interface for AF_VSOCK type sockets.
    // SockaddrVM provides access to Darwin VM sockets: a mechanism that enables
    // bidirectional communication between a hypervisor and its guest virtual
    // machines.
    type SockaddrVM struct {
    	// CID and Port specify a context ID and port address for a VM socket.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 20.7K bytes
    - Viewed (0)
Back to top