Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 56 for GetGroups (0.25 sec)

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

    	return string(buf[0 : n-1]), nil
    }
    
    func Getgroups() (gids []int, err error) {
    	n, err := getgroups(0, nil)
    	if err != nil {
    		return nil, err
    	}
    	if n == 0 {
    		return nil, nil
    	}
    
    	// Sanity check group count.  Max is 1<<16 on Linux.
    	if n < 0 || n > 1<<20 {
    		return nil, EINVAL
    	}
    
    	a := make([]_Gid_t, n)
    	n, err = getgroups(n, &a[0])
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_aix_ppc64.go

    //go:cgo_import_dynamic libc_unlinkat unlinkat "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getcwd getcwd "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_getdirent getdirent "libc.a/shr_64.o"
    //go:cgo_import_dynamic libc_wait4 wait4 "libc.a/shr_64.o"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_riscv64.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getgroups_trampoline()
    
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_amd64.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getgroups_trampoline()
    
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_arm64.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getgroups_trampoline()
    
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getgroups_trampoline()
    
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_openbsd_386.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := rawSyscall(abi.FuncPCABI0(libc_getgroups_trampoline), uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func libc_getgroups_trampoline()
    
    //go:cgo_import_dynamic libc_getgroups getgroups "libc.so"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getgroups_trampoline_addr, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getgroups_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getgroups getgroups "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)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    	r0, _, e1 := syscall_rawSyscall(libc_getgroups_trampoline_addr, uintptr(ngid), uintptr(unsafe.Pointer(gid)), 0)
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    var libc_getgroups_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_getgroups getgroups "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)
  10. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         */
        @Nullable @Optional @Input
        public Map<String, List<String>> getGroups() {
            return groups.getValue();
        }
    
        public void setGroups(@Nullable Map<String, List<String>> groups) {
            this.groups.setValue(groups);
        }
    
        public StandardJavadocDocletOptions group(Map<String, List<String>> groups) {
            setGroups(groups);
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top