Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for iovs (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    			}
    			// receive at least one normal byte
    			if sockType != SOCK_DGRAM {
    				var iova [1]Iovec
    				iova[0].Base = &dummy
    				iova[0].SetLen(1)
    				iov = iova[:]
    			}
    		}
    		msg.Control = &oob[0]
    		msg.SetControllen(len(oob))
    	}
    	if len(iov) > 0 {
    		msg.Iov = &iov[0]
    		msg.SetIovlen(len(iov))
    	}
    	if n, err = recvmsg(fd, &msg, flags); err != nil {
    		return
    	}
    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/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux.go

    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readv(fd int, iovs []Iovec) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(iovs) > 0 {
    		_p0 = unsafe.Pointer(&iovs[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := Syscall(SYS_READV, uintptr(fd), uintptr(_p0), uintptr(len(iovs)))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    	// BUG: https://github.com/moby/ipvs/issues/27
    	// If ipvs is not compiled into the kernel no error is returned and handle==nil.
    	// This in turn causes ipvs.GetVirtualServers and ipvs.AddVirtualServer
    	// to return ok (err==nil). If/when this bug is fixed parameter "ipvs" will be nil
    	// if ipvs is not supported by the kernel. Until then a re-read work-around is used.
    	if ipvs == nil {
    		return fmt.Errorf("Ipvs not supported by the kernel")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. .bazelrc

    build:macos_arm64 --macos_minimum_os=11.0
    
    # iOS configs for each architecture and the fat binary builds.
    build:ios --apple_platform_type=ios
    build:ios --apple_bitcode=embedded --copt=-fembed-bitcode
    build:ios --copt=-Wno-c++11-narrowing
    build:ios_armv7 --config=ios
    build:ios_armv7 --cpu=ios_armv7
    build:ios_arm64 --config=ios
    build:ios_arm64 --cpu=ios_arm64
    build:ios_arm64e --config=ios
    build:ios_arm64e --cpu=ios_arm64e
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	switch {
    	case goos == "android":
    		if gohostos != "android" {
    			return pathf("%s/misc/go_android_exec/main.go", goroot)
    		}
    	case goos == "ios":
    		if gohostos != "ios" {
    			return pathf("%s/misc/ios/go_ios_exec.go", goroot)
    		}
    	}
    	return ""
    }
    
    func goInstall(env []string, goBinary string, args ...string) {
    	goCmd(env, goBinary, "install", args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/cmd/dist/test.go

    		runTests: "^$", // only ensure they compile
    	})
    
    	// Test ios/amd64 for the iOS simulator.
    	if goos == "darwin" && goarch == "amd64" && t.cgoEnabled {
    		t.registerTest("GOOS=ios on darwin/amd64",
    			&goTest{
    				variant:  "amd64ios",
    				timeout:  300 * time.Second,
    				runTests: "SystemRoots",
    				env:      []string{"GOOS=ios", "CGO_ENABLED=1"},
    				pkg:      "crypto/x509",
    			})
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	msg.Name = (*byte)(unsafe.Pointer(&rsa))
    	msg.Namelen = SizeofSockaddrAny
    	var iov Iovec
    	if len(p) > 0 {
    		iov.Base = (*byte)(unsafe.Pointer(&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 = (*byte)(unsafe.Pointer(&oob[0]))
    		msg.SetControllen(len(oob))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. configure.py

    ]
    
    # List of files to configure when building Bazel on Apple platforms.
    APPLE_BAZEL_FILES = [
        'tensorflow/lite/ios/BUILD', 'tensorflow/lite/objc/BUILD',
        'tensorflow/lite/swift/BUILD',
        'tensorflow/lite/tools/benchmark/experimental/ios/BUILD'
    ]
    
    # List of files to move when building for iOS.
    IOS_FILES = [
        'tensorflow/lite/objc/TensorFlowLiteObjC.podspec',
        'tensorflow/lite/swift/TensorFlowLiteSwift.podspec',
    ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/runtime/malloc.go

    	// mips32 only has access to the low 2GB of virtual memory, so
    	// we further limit it to 31 bits.
    	//
    	// On ios/arm64, although 64-bit pointers are presumably
    	// available, pointers are truncated to 33 bits in iOS <14.
    	// Furthermore, only the top 4 GiB of the address space are
    	// actually available to the application. In iOS >=14, more
    	// of the address space is available, and the OS can now
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. tensorflow/BUILD

            ":macos_arm64",
        ],
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "ios",
        constraint_values = if_google(
            ["//third_party/bazel_platforms/os:ios"],
            [],
        ),
        values = if_oss(
            {"apple_platform_type": "ios"},
            {},
        ),
        visibility = ["//visibility:public"],
    )
    
    # TODO(jakeharmon8): Remove in favor of TSL version
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
Back to top