Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 416 for flagstr (0.1 sec)

  1. src/runtime/map_faststr.go

    		racewritepc(unsafe.Pointer(h), callerpc, abi.FuncPCABIInternal(mapassign_faststr))
    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map writes")
    	}
    	key := stringStructOf(&s)
    	hash := t.Hasher(noescape(unsafe.Pointer(&s)), uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_ACCESS                   = 33  // { int access(char *path, int amode); }
    	SYS_CHFLAGS                  = 34  // { int chflags(const char *path, u_long flags); }
    	SYS_FCHFLAGS                 = 35  // { int fchflags(int fd, u_long flags); }
    	SYS_SYNC                     = 36  // { int sync(void); }
    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    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/zsyscall_dragonfly_amd64.go

    func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.7K bytes
    - Viewed (0)
  4. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
              <defaultValue>false</defaultValue>
            </field>
            <field>
              <name>directInvocationOnly</name>
              <version>2.0.0+</version>
              <type>boolean</type>
              <description>Flags this Mojo to be invoked directly only.</description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_riscv64.s

    	MOVW	fd+0(FP), A0
    	MOV	p+8(FP), A1
    	MOVW	n+16(FP), A2
    	MOV	$SYS_read, A7
    	ECALL
    	MOVW	A0, ret+24(FP)
    	RET
    
    // func pipe2(flags int32) (r, w int32, errno int32)
    TEXT runtimeĀ·pipe2(SB),NOSPLIT|NOFRAME,$0-20
    	MOV	$r+8(FP), A0
    	MOVW	flags+0(FP), A1
    	MOV	$SYS_pipe2, A7
    	ECALL
    	MOVW	A0, errno+16(FP)
    	RET
    
    // func usleep(usec uint32)
    TEXT runtimeĀ·usleep(SB),NOSPLIT,$24-4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. src/syscall/fs_js.go

    		return 0, err
    	}
    
    	flags := 0
    	if openmode&O_WRONLY != 0 {
    		flags |= nodeWRONLY
    	}
    	if openmode&O_RDWR != 0 {
    		flags |= nodeRDWR
    	}
    	if openmode&O_CREATE != 0 {
    		flags |= nodeCREATE
    	}
    	if openmode&O_TRUNC != 0 {
    		flags |= nodeTRUNC
    	}
    	if openmode&O_APPEND != 0 {
    		flags |= nodeAPPEND
    	}
    	if openmode&O_EXCL != 0 {
    		flags |= nodeEXCL
    	}
    	if openmode&O_SYNC != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_freebsd_riscv64.go

    func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_freebsd_arm.go

    func recvmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_RECVMSG, uintptr(s), uintptr(unsafe.Pointer(msg)), uintptr(flags))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func sendmsg(s int, msg *Msghdr, flags int) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  9. src/syscall/zsyscall_openbsd_riscv64.go

    func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := syscall6(abi.FuncPCABI0(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_openbsd_386.go

    func recvfrom(fd int, p []byte, flags int, from *RawSockaddrAny, fromlen *_Socklen) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(p) > 0 {
    		_p0 = unsafe.Pointer(&p[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := syscall6(abi.FuncPCABI0(libc_recvfrom_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(p)), uintptr(flags), uintptr(unsafe.Pointer(from)), uintptr(unsafe.Pointer(fromlen)))
    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