Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 168 for vtable (0.1 sec)

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

    //go:cgo_import_dynamic libc_getrlimit getrlimit "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrtable() (rtable int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getrtable_trampoline_addr, 0, 0, 0)
    	rtable = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getrtable_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  2. configure.py

    import platform
    import re
    import subprocess
    import sys
    
    # pylint: disable=g-import-not-at-top
    try:
      from shutil import which
    except ImportError:
      from distutils.spawn import find_executable as which
    # pylint: enable=g-import-not-at-top
    
    _DEFAULT_CUDA_VERSION = '11'
    _DEFAULT_CUDNN_VERSION = '2'
    _DEFAULT_TENSORRT_VERSION = '6'
    _DEFAULT_CUDA_COMPUTE_CAPABILITIES = '3.5,7.0'
    
    _SUPPORTED_ANDROID_NDK_VERSIONS = [19, 20, 21, 25]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    //go:cgo_import_dynamic libc_getrlimit getrlimit "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrtable() (rtable int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getrtable_trampoline_addr, 0, 0, 0)
    	rtable = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getrtable_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. tensorflow/BUILD

    # configure script unconditionally); otherwise if it is false or undefined, the
    # build is static and TensorFlow symbols (in Python only) are loaded into the
    # global symbol table in order to support op registration. This means that
    # projects building with Bazel and importing TensorFlow as a dependency will not
    # depend on libtensorflow_framework.so unless they opt in.
    tf_cc_shared_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  5. src/syscall/zerrors_linux_amd64.go

    	SIGURG    = Signal(0x17)
    	SIGUSR1   = Signal(0xa)
    	SIGUSR2   = Signal(0xc)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:   "operation not permitted",
    	2:   "no such file or directory",
    	3:   "no such process",
    	4:   "interrupted system call",
    	5:   "input/output error",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_openbsd_arm.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 62.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    //go:cgo_import_dynamic libc_getrlimit getrlimit "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Getrtable() (rtable int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getrtable_trampoline_addr, 0, 0, 0)
    	rtable = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getrtable_trampoline_addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  8. src/syscall/zerrors_freebsd_arm.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.3K bytes
    - Viewed (0)
  9. src/syscall/zerrors_freebsd_arm64.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.4K bytes
    - Viewed (0)
  10. src/syscall/zerrors_freebsd_riscv64.go

    	SIGUSR1   = Signal(0x1e)
    	SIGUSR2   = Signal(0x1f)
    	SIGVTALRM = Signal(0x1a)
    	SIGWINCH  = Signal(0x1c)
    	SIGXCPU   = Signal(0x18)
    	SIGXFSZ   = Signal(0x19)
    )
    
    // Error table
    var errors = [...]string{
    	1:  "operation not permitted",
    	2:  "no such file or directory",
    	3:  "no such process",
    	4:  "interrupted system call",
    	5:  "input/output error",
    	6:  "device not configured",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 67.4K bytes
    - Viewed (0)
Back to top