Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for GetGroups (0.6 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.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)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.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)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.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)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                if (StringUtil.isEmpty(key) || userBean
                        .map(user -> stream(user.getRoles()).get(stream -> stream.anyMatch(s -> (ROLE_VALUE_PREFIX + s).equals(key)))
                                || stream(user.getGroups()).get(stream -> stream.anyMatch(s -> (GROUP_VALUE_PREFIX + s).equals(key))))
                        .orElse(false)) {
                    return p.getSecond();
                }
                return null;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.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.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.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.7K bytes
    - Viewed (0)
  7. pkg/workloadapi/security/authorization.pb.go

    		return x.Scope
    	}
    	return Scope_GLOBAL
    }
    
    func (x *Authorization) GetAction() Action {
    	if x != nil {
    		return x.Action
    	}
    	return Action_ALLOW
    }
    
    func (x *Authorization) GetGroups() []*Group {
    	if x != nil {
    		return x.Groups
    	}
    	return nil
    }
    
    type Group struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    		if testCase.ExpectOK {
    			if testCase.ExpectUserName != resp.User.GetName() {
    				t.Errorf("%s: Expected user.name=%v, got %v", k, testCase.ExpectUserName, resp.User.GetName())
    			}
    
    			groups := resp.User.GetGroups()
    			sort.Strings(testCase.ExpectGroups)
    			sort.Strings(groups)
    			if !reflect.DeepEqual(testCase.ExpectGroups, groups) {
    				t.Errorf("%s: Expected user.groups=%v, got %v", k, testCase.ExpectGroups, groups)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. src/syscall/syscall_windows.go

    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    func Getegid() (egid int)                { return -1 }
    func Getgroups() (gids []int, err error) { return nil, EWINDOWS }
    
    type Signal int
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	if 0 <= s && int(s) < len(signals) {
    		str := signals[s]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			waypointPolicy := s.authorizationPolicies.GetKey(krt.Key[model.WorkloadAuthorization](policyName))
    			if waypointPolicy == nil {
    				return nil
    			}
    			match := waypointPolicy.Authorization.GetGroups()[0].GetRules()[0].GetMatches()[0]
    			return slices.Map(match.Principals, func(sm *security.StringMatch) string {
    				return sm.GetExact()
    			})
    		}, []string{
    			"cluster.local/ns/ns1/sa/namespace-wide",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top