Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,177 for Mlock (0.04 sec)

  1. internal/bucket/bandwidth/monitor.go

    	defer m.tlock.RUnlock()
    	return m.bucketsThrottle[opts]
    }
    
    // SetBandwidthLimit sets the bandwidth limit for a bucket
    func (m *Monitor) SetBandwidthLimit(bucket, arn string, limit int64) {
    	m.tlock.Lock()
    	defer m.tlock.Unlock()
    	limitBytes := limit / int64(m.NodeCount)
    	throttle, ok := m.bucketsThrottle[BucketOptions{Name: bucket, ReplicationARN: arn}]
    	if !ok {
    		throttle = &bucketThrottle{}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/runtime/os_darwin.go

    	}
    	closeonexec(sigNoteRead)
    	closeonexec(sigNoteWrite)
    
    	// Make the write end of the pipe non-blocking, so that if the pipe
    	// buffer is somehow full we will not block in the signal handler.
    	// Leave the read end of the pipe blocking so that we will block
    	// in sigNoteSleep.
    	setNonblock(sigNoteWrite)
    }
    
    // sigNoteWakeup wakes up a thread sleeping on a note created by sigNoteSetup.
    func sigNoteWakeup(*note) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. src/runtime/sys_darwin.go

    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func madvise_trampoline()
    
    //go:nosplit
    //go:cgo_unsafe_args
    func mlock(addr unsafe.Pointer, n uintptr) {
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(mlock_trampoline)), unsafe.Pointer(&addr))
    	KeepAlive(addr) // Just for consistency. Hopefully addr is not a Go address.
    }
    func mlock_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. src/syscall/syscall_darwin.go

    //sys	Fchdir(fd int) (err error)
    //sys	Fchflags(fd int, flags int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Flock(fd int, how int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    //sys	Fsync(fd int) (err error)
    //  Fsync is not called for os.File.Sync(). Please see internal/poll/fd_fsync_darwin.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go

    		err = er
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Mlock(b []byte) (err error) {
    	var _p0 *byte
    	if len(b) > 0 {
    		_p0 = &b[0]
    	}
    	var _p1 int
    	_p1 = len(b)
    	r0, er := C.mlock(C.uintptr_t(uintptr(unsafe.Pointer(_p0))), C.size_t(_p1))
    	if r0 == -1 && er != nil {
    		err = er
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }
    	SYS_RENAME                   = 128 // { int rename(char *from, char *to); }
    	SYS_FLOCK                    = 131 // { int flock(int fd, int how); }
    	SYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }
    	SYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_freebsd_386.go

    	SYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }
    	SYS_RENAME                   = 128 // { int rename(char *from, char *to); }
    	SYS_FLOCK                    = 131 // { int flock(int fd, int how); }
    	SYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }
    	SYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_bsd.go

    //	Gethostuuid(uuid *byte, timeout *Timespec) (err error)
    //	Ptrace(req int, pid int, addr uintptr, data int) (ret uintptr, err error)
    
    //sys	Madvise(b []byte, behav int) (err error)
    //sys	Mlock(b []byte) (err error)
    //sys	Mlockall(flags int) (err error)
    //sys	Mprotect(b []byte, prot int) (err error)
    //sys	Msync(b []byte, flags int) (err error)
    //sys	Munlock(b []byte) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 15K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int nrecvmsg(int, uintptr_t, int);
    int nsendmsg(int, uintptr_t, int);
    int munmap(uintptr_t, uintptr_t);
    int madvise(uintptr_t, size_t, int);
    int mprotect(uintptr_t, size_t, int);
    int mlock(uintptr_t, size_t);
    int mlockall(int);
    int msync(uintptr_t, size_t, int);
    int munlock(uintptr_t, size_t);
    int munlockall();
    int pipe(uintptr_t);
    int poll(uintptr_t, int, int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_freebsd_arm.go

    	SYS_SETREGID                 = 127 // { int setregid(int rgid, int egid); }
    	SYS_RENAME                   = 128 // { int rename(char *from, char *to); }
    	SYS_FLOCK                    = 131 // { int flock(int fd, int how); }
    	SYS_MKFIFO                   = 132 // { int mkfifo(char *path, int mode); }
    	SYS_SENDTO                   = 133 // { int sendto(int s, caddr_t buf, size_t len, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
Back to top