Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 67 for bidirectional (0.38 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/apis/core/validation/validation.go

    		// Pods with Bidirectional propagation in non-privileged containers.
    		return allErrs
    	}
    
    	privileged := container.SecurityContext != nil && container.SecurityContext.Privileged != nil && *container.SecurityContext.Privileged
    	if *mountPropagation == core.MountPropagationBidirectional && !privileged {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    explicit <a href="#Conversions">conversion</a>.
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    		// non-privileged container + None
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationNone},
    		defaultContainer,
    		false,
    	}, {
    		// error: implicitly non-privileged container + Bidirectional
    		core.VolumeMount{Name: "foo", MountPath: "/foo", MountPropagation: &propagationBidirectional},
    		defaultContainer,
    		true,
    	}, {
    		// explicitly non-privileged container + no propagation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

            // We check both directions to verify these candidates differ. If a.matches(b) but !b.matches(a), we still consider variants a and b to be matching.
            // This is because attribute schema compatibility rules can be directional, where for two attribute values x and y, x may be compatible with y
            // while y may not be compatible with x. We accept compatibility in either direction as sufficient for this method.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/controller/util/selectors/bimultimap.go

    limitations under the License.
    */
    
    package selectors
    
    import (
    	"fmt"
    	"strings"
    	"sync"
    
    	pkglabels "k8s.io/apimachinery/pkg/labels"
    )
    
    // BiMultimap is an efficient, bi-directional mapping of object
    // keys. Associations are created by putting keys with a selector.
    type BiMultimap struct {
    	mux sync.RWMutex
    
    	// Objects.
    	labeledObjects   map[Key]*labeledObject
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 21:41:32 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// Note that this mode is recursively applied to all mounts in the volume
    	// ("rshared" in Linux terminology).
    	MountPropagationBidirectional MountPropagationMode = "Bidirectional"
    )
    
    // RecursiveReadOnlyMode describes recursive-readonly mode.
    type RecursiveReadOnlyMode string
    
    const (
    	// RecursiveReadOnlyDisabled disables recursive-readonly mode.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top