repo_id
stringlengths
21
96
file_path
stringlengths
31
155
content
stringlengths
1
92.9M
__index_level_0__
int64
0
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/env_windows.go
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Windows environment variables. package windows import ( "syscall" "unsafe" ) func Getenv(key string) (value string, found bool) { return syscall.Getenv...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/mkknownfolderids.bash
#!/bin/bash # Copyright 2019 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. set -e shopt -s nullglob knownfolders="$(printf '%s\n' "/mnt/c/Program Files (x86)/Windows Kits/"/*/Include/*/um/KnownFolders.h | sort -Vr | head -n ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/syscall.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build windows // +build windows // Package windows contains an interface to the low-level operating system // primitives. OS details vary depending on the...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/service.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build windows // +build windows package windows const ( SC_MANAGER_CONNECT = 1 SC_MANAGER_CREATE_SERVICE = 2 SC_MANAGER_ENUMERATE_SERVI...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/memory_windows.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package windows const ( MEM_COMMIT = 0x00001000 MEM_RESERVE = 0x00002000 MEM_DECOMMIT = 0x00004000 MEM_RELEASE = 0x00008000 MEM_RESET ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/setupapi_windows.go
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package windows import ( "encoding/binary" "errors" "fmt" "runtime" "strings" "syscall" "unsafe" ) // This file contains functions that wrap SetupAPI.d...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/empty.s
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build !go1.12 // +build !go1.12 // This file is here to allow bodyless functions with go:linkname for Go 1.11 // and earlier (see https://golang.org/issue...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/aliases.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build windows && go1.9 // +build windows,go1.9 package windows import "syscall" type Errno = syscall.Errno type SysProcAttr = syscall.SysProcAttr
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/exec_windows.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Fork, exec, wait, etc. package windows import ( errorspkg "errors" "unsafe" ) // EscapeArg rewrites command line argument s as prescribed // in http://m...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/mksyscall.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build generate // +build generate package windows //go:generate go run golang.org/x/sys/windows/mkwinsyscall -output zsyscall_windows.go eventlog.go serv...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/windows/types_windows_arm.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package windows type WSAData struct { Version uint16 HighVersion uint16 Description [WSADESCRIPTION_LEN + 1]byte SystemStatus [WSASYS_STATUS_LEN + 1...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go
// go run mksyscall.go -tags zos,s390x syscall_zos_s390x.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build zos && s390x // +build zos,s390x package unix import ( "unsafe" ) // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT func fcntl(fd int, cmd int, arg int) (val in...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build gc // +build gc #include "textflag.h" // // System calls for ppc64, AIX are implemented in runtime/syscall_aix.go // TEXT ·syscall6(SB),NOSPLIT,$0...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build sparc64 && linux // +build sparc64,linux package unix //sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err error) //sys Fadvise(fd ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go
// go run mksyscall.go -l32 -tags freebsd,386 syscall_bsd.go syscall_freebsd.go syscall_freebsd_386.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build freebsd && 386 // +build freebsd,386 package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GENERATED BY TH...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go
// Copyright 2014 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (linux && 386) || (linux && arm) || (linux && mips) || (linux && mipsle) || (linux && ppc) // +build linux,386 linux,arm linux,mips linux,mipsle linu...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go
// mkerrors.sh -m64 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build amd64 && freebsd // +build amd64,freebsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -m64 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_386.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build 386 && linux // +build 386,linux package unix import ( "unsafe" ) func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: int32(sec), ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build amd64 && openbsd // +build amd64,openbsd package unix func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: sec, Nsec: nsec} } func s...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go
// mkerrors.sh -m64 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm64 && netbsd // +build arm64,netbsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -m64 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_openbsd.go
// Copyright 2009,2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // OpenBSD system calls. // This file is compiled as ordinary Go code, // but it is also input to mksyscall, // which parses the //sys lines and generates ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go
// go run mksyscall.go -netbsd -tags netbsd,amd64 syscall_bsd.go syscall_netbsd.go syscall_netbsd_amd64.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build netbsd && amd64 // +build netbsd,amd64 package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GENERATED...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc64 && linux // +build ppc64,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix import ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package unix func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: sec, Nsec: nsec} } func setTimeval(sec, usec int64) Timeval { return Timeval{...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc64le && linux // +build ppc64le,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix imp...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_unix.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris p...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_darwin.go
// Copyright 2009,2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Darwin system calls. // This file is compiled as ordinary Go code, // but it is also input to mksyscall, // which parses the //sys lines and generates s...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go
// cgo -godefs types_openbsd.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build amd64 && openbsd // +build amd64,openbsd package unix const ( SizeofPtr = 0x8 SizeofShort = 0x2 SizeofInt = 0x4 SizeofLong = 0x8 SizeofLongLong = 0x8 ) type ( _C_s...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_darwin.1_13.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && go1.13 // +build darwin,go1.13 package unix import ( "unsafe" "golang.org/x/sys/internal/unsafeheader" ) //sys closedir(dir uintptr) ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go
// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm && netbsd // +build arm,netbsd package unix const ( SYS_EXIT = 1 // { void|sys||exit(int rval); } SYS_FORK ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go
// mkerrors.sh -m64 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build amd64 && netbsd // +build amd64,netbsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -m64 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build mips64le && linux // +build mips64le,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix i...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/race0.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || (darwin && !race) || (linux && !race) || (freebsd && !race) || netbsd || openbsd || solaris || dragonfly || zos // +build aix darwin,!race lin...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ptrace_ios.go
// Copyright 2020 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build ios // +build ios package unix func ptrace(request int, pid int, addr uintptr, data uintptr) (err error) { return ENOTSUP }
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go
// cgo -godefs -- -fsigned-char types_openbsd.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm64 && openbsd // +build arm64,openbsd package unix const ( SizeofPtr = 0x8 SizeofShort = 0x2 SizeofInt = 0x4 SizeofLong = 0x8 SizeofLongLong = 0x...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go
// go run mksyscall.go -openbsd -tags openbsd,amd64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_amd64.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build openbsd && amd64 // +build openbsd,amd64 package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GEN...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_illumos_amd64.go
// cgo -godefs types_illumos.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build amd64 && illumos // +build amd64,illumos package unix const ( TUNNEWPPA = 0x540001 TUNSETPPA = 0x540002 I_STR = 0x5308 I_POP = 0x5303 I_PUSH = 0x5302 I_LINK = 0x530c ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build mips64 && linux // +build mips64,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix impor...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go
// go run mksyscall.go -l32 -arm -tags linux,arm syscall_linux.go syscall_linux_arm.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build linux && arm // +build linux,arm package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build linux && ppc // +build linux,ppc package unix import ( "syscall" "unsafe" ) //sys EpollWait(epfd int, events []EpollEvent, msec int) (n int, err...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go
// cgo -godefs types_netbsd.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build 386 && netbsd // +build 386,netbsd package unix const ( SizeofPtr = 0x4 SizeofShort = 0x2 SizeofInt = 0x4 SizeofLong = 0x4 SizeofLongLong = 0x8 ) type ( _C_short ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_solaris.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Solaris system calls. // This file is compiled as ordinary Go code, // but it is also input to mksyscall, // which parses the //sys lines and generates syste...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go
// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master // Code generated by the command above; see README.md. DO NOT EDIT. //go:build 386 && openbsd // +build 386,openbsd package unix const ( SYS_EXIT = 1 // { void sys_exit(int rval); } SYS_FORK ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux.go
// Code generated by mkmerge; DO NOT EDIT. //go:build linux // +build linux package unix import ( "syscall" "unsafe" ) // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT func FanotifyInit(flags uint, event_f_flags uint) (fd int, err error) { r0, _, e1 := Syscall(SYS_FANOTIFY_INIT, uintptr(flags), ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go
// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc64le && linux // +build ppc64le,linux package unix const ( SYS_RESTART_SYSCALL = 0 SYS_EXIT = 1 SYS_FORK ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/errors_freebsd_amd64.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Constants that were deprecated or moved to enums in the FreeBSD headers. Keep // them here for backwards compatibility. package unix const ( DLT_HHDLC ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go
// go run mksyscall.go -openbsd -tags openbsd,arm64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_arm64.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build openbsd && arm64 // +build openbsd,arm64 package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GEN...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_zos.go
// Copyright 2020 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build zos && s390x // +build zos,s390x // Functions to access/create device major and minor numbers matching the // encoding used by z/OS. // // The infor...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go
// go run mksysctl_openbsd.go // Code generated by the command above; DO NOT EDIT. //go:build arm64 && openbsd // +build arm64,openbsd package unix type mibentry struct { ctlname string ctloid []_C_int } var sysctlMib = []mibentry{ {"ddb.console", []_C_int{9, 6}}, {"ddb.log", []_C_int{9, 7}}, {"ddb.max_line",...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc && linux // +build ppc,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix import "sys...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go
// go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm && openbsd // +build arm,openbsd package unix const ( SYS_EXIT = 1 // { void sys_exit(int rval); } SYS_FORK ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go
// cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/linux/types.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc && linux // +build ppc,linux package unix const ( SizeofPtr = 0x4 SizeofLong = 0x4 ) type ( _C_long int32 ) type Timespec struc...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go
// mkerrors.sh // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm && freebsd // +build arm,freebsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go
// mkerrors.sh -marm // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm && netbsd // +build arm,netbsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -marm _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go
// mkerrors.sh -maix32 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc && aix // +build ppc,aix // Created by cgo -godefs - DO NOT EDIT // cgo -godefs -- -maix32 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_BYPASS =...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ioctl.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris // +build aix darwin dragonfly freebsd linux netbsd openbsd solaris p...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s
// go run mkasm_darwin.go arm64 // Code generated by the command above; DO NOT EDIT. //go:build go1.12 // +build go1.12 #include "textflag.h" TEXT libc_getgroups_trampoline<>(SB),NOSPLIT,$0-0 JMP libc_getgroups(SB) GLOBL ·libc_getgroups_trampoline_addr(SB), RODATA, $8 DATA ·libc_getgroups_trampoline_addr(SB)/8, $l...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_arm.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build arm && linux // +build arm,linux package unix import ( "unsafe" ) func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: int32(sec), ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go
// go run mksysnum.go /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.1.sdk/usr/include/sys/syscall.h // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm64 && darwin // +build arm64,darwin package unix // Deprecated: Use libSystem wrappe...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go
// cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/linux/types.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm && linux // +build arm,linux package unix const ( SizeofPtr = 0x4 SizeofLong = 0x4 ) type ( _C_long int32 ) type Timespec struc...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build arm && linux // +build arm,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix import "sys...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build linux && (mips64 || mips64le) && gc // +build linux // +build mips64 mips64le // +build gc #include "textflag.h" // // System calls for mips64, Lin...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go
// mkerrors.sh -Wall -Werror -static -I/tmp/include // Code generated by the command above; see README.md. DO NOT EDIT. //go:build sparc64 && linux // +build sparc64,linux // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/_const.go package unix imp...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build linux && gc && 386 // +build linux,gc,386 package unix import "syscall" // Underlying system call writes to newoffset via pointer. // Implemented ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go
// go run mksyscall.go -b32 -tags linux,ppc syscall_linux.go syscall_linux_ppc.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build linux && ppc // +build linux,ppc package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build arm && freebsd // +build arm,freebsd package unix import ( "syscall" "unsafe" ) func setTimespec(sec, nsec int64) Timespec { return Timespec{Se...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go
// go run mksysnum.go http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/src/sys/kern/syscalls.master // Code generated by the command above; see README.md. DO NOT EDIT. //go:build amd64 && netbsd // +build amd64,netbsd package unix const ( SYS_EXIT = 1 // { void|sys||exit(int rval); } SYS_FORK ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go
// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h // Code generated by the command above; see README.md. DO NOT EDIT. //go:build sparc64 && linux // +build sparc64,linux package unix const ( SYS_RESTART_SYSCALL = 0 SYS_EXIT = 1 SYS_FORK ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build amd64 && dragonfly // +build amd64,dragonfly package unix import ( "syscall" "unsafe" ) func setTimespec(sec, nsec int64) Timespec { return Tim...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/epoll_zos.go
// Copyright 2020 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build zos && s390x // +build zos,s390x package unix import ( "sync" ) // This file simulates epoll on z/OS using poll. // Analogous to epoll_event on ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go
// mkerrors.sh -m32 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build 386 && freebsd // +build 386,freebsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -m32 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go
// Copyright 2015 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build arm64 && darwin // +build arm64,darwin package unix import "syscall" func setTimespec(sec, nsec int64) Timespec { return Timespec{Sec: sec, Nsec:...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/race.go
// Copyright 2012 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (darwin && race) || (linux && race) || (freebsd && race) // +build darwin,race linux,race freebsd,race package unix import ( "runtime" "unsafe" )...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_bsd.go
// Copyright 2009 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin || dragonfly || freebsd || netbsd || openbsd // +build darwin dragonfly freebsd netbsd openbsd // BSD system call wrappers shared by *BSD bas...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/mkerrors.sh
#!/usr/bin/env bash # Copyright 2009 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # Generate Go code listing errors and other #defined constant # values (ENAMETOOLONG etc.), by asking the preprocessor # about the definitions....
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/dev_freebsd.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Functions to access/create device major and minor numbers matching the // encoding used in FreeBSD's sys/types.h header. // // The information below is extra...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_darwin.1_12.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && go1.12 && !go1.13 // +build darwin,go1.12,!go1.13 package unix import ( "unsafe" ) const _SYS_GETDIRENTRIES64 = 344 func Getdirentries...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/affinity_linux.go
// Copyright 2018 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // CPU affinity functions package unix import ( "math/bits" "unsafe" ) const cpuSetSize = _CPU_SETSIZE / _NCPUBITS // CPUSet represents a CPU affinity mas...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go
// cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/linux/types.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build sparc64 && linux // +build sparc64,linux package unix const ( SizeofPtr = 0x8 SizeofLong = 0x8 ) type ( _C_long int64 ) type Timesp...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go
// cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/linux/types.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build ppc64 && linux // +build ppc64,linux package unix const ( SizeofPtr = 0x8 SizeofLong = 0x8 ) type ( _C_long int64 ) type Timespec s...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go
// cgo -godefs -- -Wall -Werror -static -I/tmp/include /build/unix/linux/types.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build mips64le && linux // +build mips64le,linux package unix const ( SizeofPtr = 0x8 SizeofLong = 0x8 ) type ( _C_long int64 ) type Time...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build darwin && !ios // +build darwin,!ios package unix // SysvShmCtl performs control operations on the shared memory segment // specified by id. func S...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go
// go run linux/mksysnum.go -Wall -Werror -static -I/tmp/include /tmp/include/asm/unistd.h // Code generated by the command above; see README.md. DO NOT EDIT. //go:build riscv64 && linux // +build riscv64,linux package unix const ( SYS_IO_SETUP = 0 SYS_IO_DESTROY = 1 SYS_IO_SUBMIT ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go
// mkerrors.sh -m32 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build 386 && netbsd // +build 386,netbsd // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -m32 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ARP ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go
// cgo -godefs types_freebsd.go | go run mkpost.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build 386 && freebsd // +build 386,freebsd package unix const ( SizeofPtr = 0x4 SizeofShort = 0x2 SizeofInt = 0x4 SizeofLong = 0x4 SizeofLongLong = 0x8 ) type ( _C_short...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/timestruct.go
// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos // +build aix darwin dragonfly freebsd linux netbsd openbsd sol...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build riscv64 && gc // +build riscv64 // +build gc #include "textflag.h" // // System calls for linux/riscv64. // // Where available, just jump to packag...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go
// go run mksysctl_openbsd.go // Code generated by the command above; DO NOT EDIT. //go:build arm && openbsd // +build arm,openbsd package unix type mibentry struct { ctlname string ctloid []_C_int } var sysctlMib = []mibentry{ {"ddb.console", []_C_int{9, 6}}, {"ddb.log", []_C_int{9, 7}}, {"ddb.max_line", []_...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go
// Copyright 2019 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || freebsd || linux || netbsd || openbsd || solaris || zos // +build aix darwin freebsd linux netbsd openbsd solaris zos package unix ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/sockcmsg_unix.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos // +build aix darwin dragonfly freebsd linux netbsd openbsd sol...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go
// mkerrors.sh -m64 // Code generated by the command above; see README.md. DO NOT EDIT. //go:build amd64 && dragonfly // +build amd64,dragonfly // Code generated by cmd/cgo -godefs; DO NOT EDIT. // cgo -godefs -- -m64 _const.go package unix import "syscall" const ( AF_APPLETALK = 0x10 AF_ATM...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/syscall_illumos.go
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // illumos system calls not present on Solaris. //go:build amd64 && illumos // +build amd64,illumos package unix import ( "fmt" "runtime" "unsafe" ) func...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.1_13.go
// go run mksyscall.go -tags darwin,amd64,go1.13 syscall_darwin.1_13.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build darwin && amd64 && go1.13 // +build darwin,amd64,go1.13 package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GENERATED BY THE COMMAND AT...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/env_unix.go
// Copyright 2010 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos // +build aix darwin dragonfly freebsd linux netbsd openbsd sol...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go
// go run mksyscall.go -l32 -netbsd -arm -tags netbsd,arm syscall_bsd.go syscall_netbsd.go syscall_netbsd_arm.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build netbsd && arm // +build netbsd,arm package unix import ( "syscall" "unsafe" ) var _ syscall.Errno // THIS FILE IS GENERAT...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zerrors_linux.go
// Code generated by mkmerge; DO NOT EDIT. //go:build linux // +build linux package unix import "syscall" const ( AAFS_MAGIC = 0x5a3c69f0 ADFS_SUPER_MAGIC = 0xadf5 AFFS_SUPER_MAGIC = 0xadff AFS_FS_MAGIC ...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/sockcmsg_linux.go
// Copyright 2011 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Socket control messages package unix import "unsafe" // UnixCredentials encodes credentials into a socket control message // for sending to another proces...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go
// go run mksyscall_aix_ppc.go -aix -tags aix,ppc syscall_aix.go syscall_aix_ppc.go // Code generated by the command above; see README.md. DO NOT EDIT. //go:build aix && ppc // +build aix,ppc package unix /* #include <stdint.h> #include <stddef.h> int utimes(uintptr_t, uintptr_t); int utimensat(int, uintptr_t, uintp...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/asm_bsd_386.s
// Copyright 2021 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. //go:build (freebsd || netbsd || openbsd) && gc // +build freebsd netbsd openbsd // +build gc #include "textflag.h" // System call support for 386 BSD // Jus...
0
rapidsai_public_repos/roc/vendor/golang.org/x/sys
rapidsai_public_repos/roc/vendor/golang.org/x/sys/unix/mkall.sh
#!/usr/bin/env bash # Copyright 2009 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # This script runs or (given -n) prints suggested commands to generate files for # the Architecture/OS specified by the GOARCH and GOOS environ...
0