Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for bidirectional (0.32 sec)

  1. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        to which this VolumeSnapshotContent object is bound. VolumeSnapshot.Spec.VolumeSnapshotContentName
                        field must reference to this VolumeSnapshotContent's name for the
                        bidirectional binding to be valid. For a pre-existing VolumeSnapshotContent
                        object, name and namespace of the VolumeSnapshot object MUST be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K 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. pilot/pkg/model/config.go

    // treated as read-only. Modifying them violates thread-safety.
    type ConfigStore interface {
    	// Schemas exposes the configuration type schema known by the config store.
    	// The type schema defines the bidirectional mapping between configuration
    	// types and the protobuf encoding schema.
    	Schemas() collection.Schemas
    
    	// Get retrieves a configuration element by a type and a key
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top