Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for GetCgroups (0.38 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                permissions = null;
                return true;
            }
    
            public AuthenticationResult getAuthenticationResult() {
                return authResult;
            }
    
            public void setGroups(final String[] groups) {
                this.groups = groups;
            }
    
            public void setRoles(final String[] roles) {
                this.roles = roles;
            }
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/bsbhv/BsUserBhv.java

                result.setGidNumber(DfTypeUtil.toLong(source.get("gidNumber")));
                result.setGivenName(DfTypeUtil.toString(source.get("givenName")));
                result.setGroups(toStringArray(source.get("groups")));
                result.setHomeDirectory(DfTypeUtil.toString(source.get("homeDirectory")));
                result.setHomePhone(DfTypeUtil.toString(source.get("homePhone")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_GETRUSAGE = 117
    pkg syscall (darwin-arm64), const SYS_GETRUSAGE ideal-int
    pkg syscall (darwin-arm64), const SYS_GETSGROUPS = 288
    pkg syscall (darwin-arm64), const SYS_GETSGROUPS ideal-int
    pkg syscall (darwin-arm64), const SYS_GETSID = 310
    pkg syscall (darwin-arm64), const SYS_GETSID ideal-int
    pkg syscall (darwin-arm64), const SYS_GETSOCKNAME = 32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  4. misc/wasm/wasm_exec.js

    		};
    	}
    
    	if (!globalThis.process) {
    		globalThis.process = {
    			getuid() { return -1; },
    			getgid() { return -1; },
    			geteuid() { return -1; },
    			getegid() { return -1; },
    			getgroups() { throw enosys(); },
    			pid: -1,
    			ppid: -1,
    			umask() { throw enosys(); },
    			cwd() { throw enosys(); },
    			chdir() { throw enosys(); },
    		}
    	}
    
    	if (!globalThis.crypto) {
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            groupList.addAll(getDefaultGroupList());
            roleList.addAll(getDefaultRoleList());
            processMemberOf(user, groupList, roleList, "https://graph.microsoft.com/v1.0/me/memberOf");
            user.setGroups(groupList.stream().distinct().toArray(n -> new String[n]));
            user.setRoles(roleList.stream().distinct().toArray(n -> new String[n]));
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  6. 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;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                                    roleList.add(Base64.getUrlEncoder().encodeToString(name.getBytes(Constants.CHARSET_UTF_8)));
                                }
                            });
                            user.setGroups(groupList.toArray(new String[groupList.size()]));
                            user.setRoles(roleList.toArray(new String[roleList.size()]));
                        }
                    });
    
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall (darwin-386), const SYS_GETPRIORITY ideal-int
    pkg syscall (darwin-386), const SYS_GETRLIMIT ideal-int
    pkg syscall (darwin-386), const SYS_GETRUSAGE ideal-int
    pkg syscall (darwin-386), const SYS_GETSGROUPS ideal-int
    pkg syscall (darwin-386), const SYS_GETSID ideal-int
    pkg syscall (darwin-386), const SYS_GETSOCKNAME ideal-int
    pkg syscall (darwin-386), const SYS_GETSOCKOPT ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  9. api/go1.1.txt

    pkg syscall (darwin-386), const SYS_GETPRIORITY = 100
    pkg syscall (darwin-386), const SYS_GETRLIMIT = 194
    pkg syscall (darwin-386), const SYS_GETRUSAGE = 117
    pkg syscall (darwin-386), const SYS_GETSGROUPS = 288
    pkg syscall (darwin-386), const SYS_GETSID = 310
    pkg syscall (darwin-386), const SYS_GETSOCKNAME = 32
    pkg syscall (darwin-386), const SYS_GETSOCKOPT = 118
    pkg syscall (darwin-386), const SYS_GETTID = 286
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  10. api/go1.2.txt

    pkg syscall (freebsd-386-cgo), const SYS_GETFH ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_GETFSSTAT ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_GETGID ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_GETGROUPS ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_GETITIMER ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_GETLOGIN ideal-int
    pkg syscall (freebsd-386-cgo), const SYS_GETLOGINCLASS ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
Back to top