Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for bidirectional (0.14 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/config/kube/gateway/conversion.go

    			return &ParentError{
    				Reason:  ParentErrorNotAccepted,
    				Message: fmt.Sprintf("sectionName %q not found", parentRef.SectionName),
    			}
    		}
    
    		// Next check the hostnames are a match. This is a bi-directional wildcard match. Only one route
    		// hostname must match for it to be allowed (but the others will be filtered at runtime)
    		// If either is empty its treated as a wildcard which always matches
    
    		if len(hostnames) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    // PLEASE DO NOT ATTEMPT TO SIMPLIFY THIS CODE.
    // KEEP THE SPACE SHUTTLE FLYING.
    // ==================================================================
    
    // Design:
    //
    // The fundamental key to this design is the bi-directional "pointer" between
    // PersistentVolumes (PVs) and PersistentVolumeClaims (PVCs), which is
    // represented here as pvc.Spec.VolumeName and pv.Spec.ClaimRef. The bi-
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top