Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 154 for du32 (0.08 sec)

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

    //sys	Chroot(path string) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(from int, to int) (err error)
    //sys	Exit(code int)
    //sys	ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_arm.go

    	SYS_GETITIMER                = 86  // { int getitimer(u_int which, \
    	SYS_GETDTABLESIZE            = 89  // { int getdtablesize(void); }
    	SYS_DUP2                     = 90  // { int dup2(u_int from, u_int to); }
    	SYS_FCNTL                    = 92  // { int fcntl(int fd, int cmd, long arg); }
    	SYS_SELECT                   = 93  // { int select(int nd, fd_set *in, fd_set *ou, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_SWAPON        = 85  // { int swapon(char *name); }
    	SYS_GETITIMER     = 86  // { int getitimer(u_int which, struct itimerval *itv); }
    	SYS_GETDTABLESIZE = 89  // { int getdtablesize(void); }
    	SYS_DUP2          = 90  // { int dup2(u_int from, u_int to); }
    	SYS_FCNTL         = 92  // { int fcntl(int fd, int cmd, long arg); }
    	SYS_SELECT        = 93  // { int select(int nd, fd_set *in, fd_set *ou, \
    	SYS_FSYNC         = 95  // { int fsync(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  4. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_GETPGRP              = 81  // { int|sys||getpgrp(void); }
    	SYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }
    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  5. src/syscall/zsysnum_netbsd_arm.go

    	SYS_GETPGRP              = 81  // { int|sys||getpgrp(void); }
    	SYS_SETPGID              = 82  // { int|sys||setpgid(pid_t pid, pid_t pgid); }
    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

      value: dup1
    - name: 3
    - name: 2
      value: dup2
    - name: 4
    `),
    			Current: []byte(`
    mergingList:
    - name: 1
    - name: 2
      value: dup1
    - name: 3
    - name: 2
      value: dup2
    - name: 4
    `),
    			Modified: []byte(`
    mergingList:
    - name: 2
      value: dup1
    - name: 1
    - name: 4
    - name: 3
    - name: 2
      value: dup2
    `),
    			TwoWay: []byte(`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  7. src/runtime/debuglog.go

    //go:nosplit
    func (l *dlogger) u8(x uint8) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u16(x uint16) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u32(x uint32) *dlogger {
    	return l.u64(uint64(x))
    }
    
    //go:nosplit
    func (l *dlogger) u64(x uint64) *dlogger {
    	if !dlogEnabled {
    		return l
    	}
    	l.w.byte(debugLogUint)
    	l.w.uvarint(x)
    	return l
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/syscall/exec_linux.go

    			nextfd++
    		}
    	}
    
    	// Pass 2: dup fd[i] down onto i.
    	for i = 0; i < len(fd); i++ {
    		if fd[i] == -1 {
    			RawSyscall(SYS_CLOSE, uintptr(i), 0, 0)
    			continue
    		}
    		if fd[i] == i {
    			// dup2(i, i) won't clear close-on-exec flag on Linux,
    			// probably not elsewhere either.
    			_, _, err1 = RawSyscall(fcntl64Syscall, uintptr(fd[i]), F_SETFD, 0)
    			if err1 != 0 {
    				goto childerror
    			}
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/syscall/syscall_aix.go

    // But, as fcntl is currently not exported and isn't called with F_DUP2FD,
    // it doesn't matter.
    //sys	fcntl(fd int, cmd int, arg int) (val int, err error)
    //sys	Dup2(old int, new int) (err error)
    
    //sysnb pipe(p *[2]_C_int) (err error)
    
    func Pipe(p []int) (err error) {
    	if len(p) != 2 {
    		return EINVAL
    	}
    	var pp [2]_C_int
    	err = pipe(&pp)
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_arm.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Dup2(from int, to int) (err error) {
    	_, _, e1 := syscall(abi.FuncPCABI0(libc_dup2_trampoline), uintptr(from), uintptr(to), 0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_dup2_trampoline()
    
    //go:cgo_import_dynamic libc_dup2 dup2 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
Back to top