Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for bidirectional (0.63 sec)

  1. 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)
  2. src/internal/types/errors/codes.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: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

               TFL_StatefulOp,
               QuantizableResult,
               DynamicRangeQuantizedOpInterface]> {
      let summary = "Bidirectional sequence lstm operator";
    
      let description = [{
        Bidirectional lstm is essentially two lstms, one running forward & the
        other running backward. And the output is the concatenation of the two
        lstms.
      }];
    
      let arguments = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	return unsafe.Pointer(&sa.raw), SizeofSockaddrALG, nil
    }
    
    // SockaddrVM implements the Sockaddr interface for AF_VSOCK type sockets.
    // SockaddrVM provides access to Linux 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: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. doc/go_spec.html

    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If a direction is given, the channel is <i>directional</i>,
    otherwise it is <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignment_statements">assignment</a> or
    explicit <a href="#Conversions">conversion</a>.
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  7. src/reflect/type.go

    // https://golang.org/doc/go_spec.html#Assignability
    // T and V must be both of Chan kind.
    func specialChannelAssignability(T, V *abi.Type) bool {
    	// Special case:
    	// 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingServer.java

    import org.gradle.api.Action;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A {@code MessagingServer} allows the creation of multiple bi-directional uni-cast connections.
     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingServer {
        /**
         * Creates an endpoint that peers can connect to. Assigns an arbitrary address.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/MessagingClient.java

     */
    package org.gradle.internal.remote;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A {@code MessagingClient} maintains a single bi-directional uni-cast object connection with some peer.
     */
    @ServiceScope(Scope.Global.class)
    public interface MessagingClient {
        /**
         * Creates a connection to the given address. Blocks until the connection has been established.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/match.go

    // match. The resulting match will always be either Und or a language with the
    // same language and script as the requested language. It will not match
    // languages for which there is understood to be mutual or one-directional
    // intelligibility.
    //
    // A Match will indicate an Exact match if the language matches after
    // canonicalization and High if the matched tag is a parent.
    func NewInheritanceMatcher(t []language.Tag) *InheritanceMatcher {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top