Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 915 for iovecs (0.13 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	}
    	info, ok := debug.ReadBuildInfo()
    	if !ok {
    		return nil, fmt.Errorf("no build info")
    	}
    	year, month, day := time.Now().UTC().Date()
    	goVers := info.GoVersion
    	// E.g.,  goVers:"go1.22-20240109-RC01 cl/597041403 +dcbe772469 X:loopvar"
    	words := strings.Fields(goVers)
    	goVers = words[0]
    	progPkgPath := info.Path
    	if progPkgPath == "" {
    		progPkgPath = strings.TrimSuffix(filepath.Base(os.Args[0]), ".exe")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. pkg/apis/abac/register.go

    // TODO: remove this, abac should not have its own scheme.
    var Scheme = runtime.NewScheme()
    
    // Codecs provides access to encoding and decoding for the scheme
    var Codecs = serializer.NewCodecFactory(Scheme)
    
    func init() {
    	// TODO: delete this, abac should not have its own scheme.
    	addKnownTypes(Scheme)
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 18 16:05:04 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go

    	Pad  [1012]uint8
    }
    
    type _Socklen uint32
    
    type Cmsghdr struct {
    	Len   uint32
    	Level int32
    	Type  int32
    }
    
    type ICMPv6Filter struct {
    	Filt [8]uint32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint64
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    // Scheme is the registry for any type that adheres to the meta API spec.
    var scheme = runtime.NewScheme()
    
    // Codecs provides access to encoding and decoding for the scheme.
    var Codecs = serializer.NewCodecFactory(scheme)
    
    // ParameterCodec handles versioning of objects that are converted to query parameters.
    var ParameterCodec = runtime.NewParameterCodec(scheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 12 17:32:02 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.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)
  6. src/cmd/vendor/golang.org/x/sys/unix/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 Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. 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)
  8. src/syscall/syscall_freebsd_amd64.go

    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 13:10:54 UTC 2016
    - 1.1K bytes
    - Viewed (0)
  9. src/syscall/syscall_freebsd_riscv64.go

    	return Timeval{Sec: sec, Usec: usec}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = int16(mode)
    	k.Flags = uint16(flags)
    }
    
    func (iov *Iovec) SetLen(length int) {
    	iov.Len = uint64(length)
    }
    
    func (msghdr *Msghdr) SetControllen(length int) {
    	msghdr.Controllen = uint32(length)
    }
    
    func (cmsg *Cmsghdr) SetLen(length int) {
    	cmsg.Len = uint32(length)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/load/load.go

    	api "k8s.io/apiserver/pkg/apis/apiserver"
    	"k8s.io/apiserver/pkg/apis/apiserver/install"
    	externalapi "k8s.io/apiserver/pkg/apis/apiserver/v1alpha1"
    )
    
    var (
    	scheme = runtime.NewScheme()
    	codecs = serializer.NewCodecFactory(scheme, serializer.EnableStrict)
    )
    
    func init() {
    	install.Install(scheme)
    }
    
    func LoadFromFile(file string) (*api.AuthorizationConfiguration, error) {
    	data, err := os.ReadFile(file)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top