Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 855 for Ftruncate (0.14 sec)

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

    	SYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }
    	SYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }
    	SYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }
    	SYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_ftruncate_trampoline), uintptr(fd), uintptr(length), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_ftruncate_trampoline()
    
    //go:cgo_import_dynamic libc_ftruncate ftruncate "/usr/lib/libSystem.B.dylib"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go

    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := syscall_syscall(libc_ftruncate_trampoline_addr, uintptr(fd), uintptr(length), uintptr(length>>32))
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_ftruncate_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_ftruncate ftruncate "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go

    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := syscall_syscall(libc_ftruncate_trampoline_addr, uintptr(fd), uintptr(length), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_ftruncate_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_ftruncate ftruncate "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go

    func Ftruncate(fd int, length int64) (err error) {
    	_, _, e1 := syscall_syscall6(libc_ftruncate_trampoline_addr, uintptr(fd), 0, uintptr(length), uintptr(length>>32), 0, 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_ftruncate_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_ftruncate ftruncate "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }
    	SYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }
    	SYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }
    	SYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate.go

    limitations under the License.
    */
    
    package truncate
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	auditinternal "k8s.io/apiserver/pkg/apis/audit"
    	"k8s.io/apiserver/pkg/audit"
    )
    
    const (
    	// PluginName is the name reported in error metrics.
    	PluginName = "truncate"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 29 00:03:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }
    	SYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }
    	SYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }
    	SYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }
    	SYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }
    	SYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }
    	SYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_arm64.go

    	SYS_LSEEK                    = 478 // { off_t lseek(int fd, off_t offset, int whence); }
    	SYS_TRUNCATE                 = 479 // { int truncate(char *path, off_t length); }
    	SYS_FTRUNCATE                = 480 // { int ftruncate(int fd, off_t length); }
    	SYS_THR_KILL2                = 481 // { int thr_kill2(pid_t pid, long id, int sig); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
Back to top