- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 81 for cgroup (0.06 sec)
-
CHANGELOG/CHANGELOG-1.2.md
* Whether all containers should be non-root * Supplemental Groups * FSGroup - a special supplemental group * SELinux options * If a pod defines an FSGroup, that Pod’s system (emptyDir, secret, configMap, etc) volumes and block-device volumes will be owned by the FSGroup, and each container in the pod will run with the FSGroup as a supplemental group
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("2group$special", permissionHelper.encode("{group}group$special")); } public void test_decode_withComplexValues() { assertEquals("{user}******@****.***", permissionHelper.decode("******@****.***")); assertEquals("{group}group/subgroup", permissionHelper.decode("2group/subgroup"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
// Test with multiple groups testUser.setGroupNames(new String[] { "developers", "testers", "managers" }); groups = fessUserBean.getGroups(); assertEquals(3, groups.length); assertEquals("developers", groups[0]); assertEquals("testers", groups[1]); assertEquals("managers", groups[2]); } public void test_isEditable() { // Test with non-editable user (default)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
assertNotNull(groupNames); assertEquals(2, groupNames.length); assertEquals("group1", groupNames[0]); assertEquals("group2", groupNames[1]); } public void test_getGroupNames_empty() { // Test when no groups match the prefix ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
logger.warn("Failed to access groups/roles: {}", contentMap); } } catch (final IOException e) { logger.warn("Failed to access groups/roles in AzureAD.", e); } } /** * Adds a group or role name to the specified list. * @param list The list to add the group or role name to. * @param value The group or role name value.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt
} // Check for too few groups. We wanted exactly four. return b == addressOffset + 4 } /** Encodes an IPv6 address in canonical form according to RFC 5952. */ internal fun inet6AddressToAscii(address: ByteArray): String { // Go through the address looking for the longest run of 0s. Each group is 2-bytes. // A run must be longer than one group (section 4.2.2).
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
public String ldapAccountFilter; /** * LDAP filter for finding groups. * Defines the search filter used to locate groups in LDAP. */ @Size(max = 1000) public String ldapGroupFilter; /** * LDAP attribute name for group membership. * Specifies which LDAP attribute contains group membership information. */ @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
// Test with multiple groups String[] groups = { "developers", "testers", "managers" }; FessUser user = new TestFessUser("testuser", new String[] {}, groups, new String[] {}); assertArrayEquals(groups, user.getGroupNames()); // Test with single group groups = new String[] { "users" }; user = new TestFessUser("testuser", new String[] {}, groups, new String[] {});
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.user_title_details=User labels.role_configuration=Role labels.role_list_name=Name labels.role_name=Name labels.role_title_details=Role labels.group_configuration=Group labels.group_list_name=Name labels.group_name=Name labels.group_title_details=Group labels.related_content_configuration=Related Content labels.related_content_content=Content labels.related_content_list_term=Term labels.related_content_term=Term
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp
<div class="input-group"> <la:text styleId="notificationTo" property="notificationTo" styleClass="form-control"/> <div class="input-group-append">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 39.6K bytes - Viewed (0)