Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 364 for iovs (0.04 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.ios-amd64.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.ios-amd64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.ios-amd64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.ios-arm64.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.ios-arm64
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.ios-arm64"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    	var empty bool
    	if len(oob) > 0 {
    		// send at least one normal byte
    		empty = emptyIovecs(iov)
    		if empty {
    			var iova [1]Iovec
    			iova[0].Base = &dummy
    			iova[0].SetLen(1)
    			iov = iova[:]
    		}
    		msg.Accrightslen = int32(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    	if n, err = sendmsg(fd, &msg, flags); err != nil {
    		return 0, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, \
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, \
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, \
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, \
    	SYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_freebsd_386.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, \
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, \
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, \
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, \
    	SYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_arm.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, \
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, \
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, \
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, \
    	SYS_FCHOWN                   = 123 // { int fchown(int fd, int uid, int gid); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/util/ipvs_linux.go

    limitations under the License.
    */
    
    package ipvs
    
    import (
    	"errors"
    	"fmt"
    	"net"
    	"strings"
    	"sync"
    	"time"
    
    	libipvs "github.com/moby/ipvs"
    
    	"golang.org/x/sys/unix"
    	"k8s.io/klog/v2"
    )
    
    // runner implements ipvs.Interface.
    type runner struct {
    	ipvsHandle *libipvs.Handle
    	mu         sync.Mutex // Protect Netlink calls
    }
    
    // Protocol is the IPVS service protocol type
    type Protocol uint16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/syscall/syscall_bsd.go

    	msg.Namelen = uint32(SizeofSockaddrAny)
    	var iov Iovec
    	if len(p) > 0 {
    		iov.Base = &p[0]
    		iov.SetLen(len(p))
    	}
    	var dummy byte
    	if len(oob) > 0 {
    		// receive at least one normal byte
    		if len(p) == 0 {
    			iov.Base = &dummy
    			iov.SetLen(1)
    		}
    		msg.Control = &oob[0]
    		msg.SetControllen(len(oob))
    	}
    	msg.Iov = &iov
    	msg.Iovlen = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/common.go

    	istioNamespaceKey = "istioNamespace"
    )
    
    // Namespace returns the namespace of the containing CR.
    func Namespace(iops *v1alpha1.IstioOperatorSpec) string {
    	if iops.Namespace != "" {
    		return iops.Namespace
    	}
    	if iops.Values == nil {
    		return ""
    	}
    	v := iops.Values.AsMap()
    	if v[globalKey] == nil {
    		return ""
    	}
    	vg := v[globalKey].(map[string]any)
    	n := vg[istioNamespaceKey]
    	if n == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_GETSOCKOPT               = 118 // { int getsockopt(int s, int level, int name, caddr_t val, int *avalsize); }
    	SYS_READV                    = 120 // { int readv(int fd, struct iovec *iovp, u_int iovcnt); }
    	SYS_WRITEV                   = 121 // { int writev(int fd, struct iovec *iovp, u_int iovcnt); }
    	SYS_SETTIMEOFDAY             = 122 // { int settimeofday(struct timeval *tv, struct timezone *tzp); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top