Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for bidirectional (0.39 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typeparams/coretype.go

    			return nil // channel elements are not identical.
    		}
    		if ch.Dir() == types.SendRecv {
    			// ch is bidirectional. We can safely always use curr's direction.
    			ch = curr
    		} else if curr.Dir() != types.SendRecv && ch.Dir() != curr.Dir() {
    			// ch and curr are not bidirectional and not the same direction.
    			return nil
    		}
    	}
    	return ch
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repairip.go

    //
    // There is a one-to-one relation between Service ClusterIPs and IPAddresses.
    // The bidirectional relation is achieved using the following fields:
    // Service.Spec.Cluster == IPAddress.Name AND IPAddress.ParentRef == Service
    //
    // The controller use two reconcile loops, one for Services and other for IPAddress.
    // The Service reconcile loop verifies the bidirectional relation exists and is correct.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/go/types/operand.go

    			// T implements V, so give hint about type assertion.
    			if cause != nil {
    				*cause = "need type assertion"
    			}
    			return false, IncompatibleAssign
    		}
    	}
    
    	// x is a bidirectional channel value, T is a channel
    	// type, x's type V and T have identical element types,
    	// and at least one of V or T is not a named type.
    	if Vc, ok := Vu.(*Chan); ok && Vc.dir == SendRecv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/operand.go

    			// T implements V, so give hint about type assertion.
    			if cause != nil {
    				*cause = "need type assertion"
    			}
    			return false, IncompatibleAssign
    		}
    	}
    
    	// x is a bidirectional channel value, T is a channel
    	// type, x's type V and T have identical element types,
    	// and at least one of V or T is not a named type.
    	if Vc, ok := Vu.(*Chan); ok && Vc.dir == SendRecv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token.go

    		Short: "Manage bootstrap tokens",
    		Long: dedent.Dedent(`
    			This command manages bootstrap tokens. It is optional and needed only for advanced use cases.
    
    			In short, bootstrap tokens are used for establishing bidirectional trust between a client and a server.
    			A bootstrap token can be used when a client (for example a node that is about to join the cluster) needs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    	//
    	//  var x I = T(1)
    	InvalidIfaceAssign
    
    	// InvalidChanAssign occurs when a chan assignment is invalid.
    	//
    	// Per the spec, a value x is assignable to a channel type T if:
    	//  "x is a bidirectional channel value, T is a channel type, x's type V and
    	//  T have identical element types, and at least one of V or T is not a
    	//  defined type."
    	//
    	// Example:
    	//  type T1 chan int
    	//  type T2 chan int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                  name: sys-fs
                  # Bidirectional is required to ensure that the new mount we make at /sys/fs/bpf propagates to the host
                  # so that it outlives the init container.
                  mountPropagation: Bidirectional
                - mountPath: /var/run/calico
                  name: var-run-calico
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top