Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 361 for iovs (0.04 sec)

  1. src/syscall/zsysnum_freebsd_riscv64.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 Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_arm64.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: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/cmd/link/dwarf_test.go

    		t.Skipf("iOS SDK not detected.")
    	}
    	cc := "CC=" + runtime.GOROOT() + "/misc/ios/clangwrap.sh"
    	// iOS doesn't allow unmapped segments, so iOS executables don't have DWARF.
    	t.Run("exe", func(t *testing.T) {
    		testDWARF(t, "", false, cc, "CGO_ENABLED=1", "GOOS=ios", "GOARCH=arm64")
    	})
    	// However, c-archive iOS objects have embedded DWARF.
    	t.Run("c-archive", func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. cmd/kube-proxy/app/server.go

    	fs.StringVar(&o.config.IPVS.Scheduler, "ipvs-scheduler", o.config.IPVS.Scheduler, "The ipvs scheduler type when proxy mode is ipvs")
    	fs.StringSliceVar(&o.config.IPVS.ExcludeCIDRs, "ipvs-exclude-cidrs", o.config.IPVS.ExcludeCIDRs, "A comma-separated list of CIDRs which the ipvs proxier should not touch when cleaning up IPVS rules.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/util/testing/fake.go

    	"net"
    	"sort"
    	"strconv"
    	"time"
    
    	utilipvs "k8s.io/kubernetes/pkg/proxy/ipvs/util"
    )
    
    // FakeIPVS no-op implementation of ipvs Interface
    type FakeIPVS struct {
    	Scheduler    string
    	Services     map[ServiceKey]*utilipvs.VirtualServer
    	Destinations map[ServiceKey][]*utilipvs.RealServer
    }
    
    // ServiceKey uniquely identifies a Service for an IPVS virtual server
    type ServiceKey struct {
    	IP       string
    	Port     uint16
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/ipset.go

    	kubeIPVSSetComment = "Addresses on the ipvs interface"
    	kubeIPVSSet        = "KUBE-IPVS-IPS"
    )
    
    // IPSetVersioner can query the current ipset version.
    type IPSetVersioner interface {
    	// returns "X.Y"
    	GetVersion() (string, error)
    }
    
    // IPSet wraps util/ipset which is used by IPVS proxier.
    type IPSet struct {
    	utilipset.IPSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/env_cross_build.txt

    env GOOS=
    env GOARCH=
    env GOEXPERIMENT=
    
    env GOENV=windows-amd64
    go build internal/abi
    
    env GOENV=ios-arm64
    go build internal/abi
    
    env GOENV=linux-mips
    go build internal/abi
    
    -- windows-amd64 --
    GOOS=windows
    GOARCH=amd64
    
    -- ios-arm64 --
    GOOS=ios
    GOARCH=arm64
    
    -- linux-mips --
    GOOS=linux
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 537 bytes
    - Viewed (0)
  8. .gitignore

    *.whl
    
    # Android
    .gradle
    .idea
    *.iml
    local.properties
    gradleBuild
    
    # iOS
    *.pbxproj
    *.xcworkspace
    /*.podspec
    /tensorflow/lite/**/coreml/**/BUILD
    /tensorflow/lite/**/ios/BUILD
    /tensorflow/lite/**/objc/BUILD
    /tensorflow/lite/**/swift/BUILD
    /tensorflow/lite/examples/ios/simple/data/*.tflite
    /tensorflow/lite/examples/ios/simple/data/*.txt
    Podfile.lock
    Pods
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 22:28:59 UTC 2024
    - 934 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    	iov := make([]Iovec, len(buffers))
    	for i := range buffers {
    		if len(buffers[i]) > 0 {
    			iov[i].Base = &buffers[i][0]
    			iov[i].SetLen(len(buffers[i]))
    		} else {
    			iov[i].Base = (*byte)(unsafe.Pointer(&_zero))
    		}
    	}
    	var rsa RawSockaddrAny
    	n, oobn, recvflags, err = recvmsgRaw(fd, iov, oob, flags, &rsa)
    	if err == nil && rsa.Addr.Family != AF_UNSPEC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_android_issue62123.txt

    ! go test -c -o $devnull os
    stderr '# os\nandroid/amd64 requires external \(cgo\) linking, but cgo is not enabled'
    ! stderr 'cannot find runtime/cgo'
    
    env GOOS=ios GOARCH=arm64 CGO_ENABLED=0
    
    ! go build -o $devnull cmd/buildid
    stderr 'ios/arm64 requires external \(cgo\) linking, but cgo is not enabled'
    ! stderr 'cannot find runtime/cgo'
    
    ! go test -c -o $devnull os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 21:55:28 UTC 2023
    - 683 bytes
    - Viewed (0)
Back to top