- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for dieser (0.07 sec)
-
src/main/resources/fess_message_de.properties
errors.design_file_name_is_invalid = Der Dateiname ist ungültig. errors.design_file_is_unsupported_type = Dieser Dateityp wird nicht unterstützt. errors.failed_to_create_crawling_config_at_wizard = Fehler beim Erstellen einer Crawling-Konfiguration in einem Assistenten. errors.design_editor_disabled = Diese Funktion ist deaktiviert. errors.not_found_on_file_system = Nicht gefunden. Ursache: {0}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/resources/fess_label_de.properties
labels.search_list_button_delete=Löschen labels.search_list_delete_confirmation=Sind Sie sicher, dass Sie löschen möchten? labels.search_list_button_delete_all=Alle mit dieser Abfrage löschen labels.search_list_delete_all_confirmation=Sind Sie sicher, dass Sie alle mit dieser Abfrage löschen möchten? labels.search_list_button_cancel=Abbrechen labels.failure_url_configuration=Fehler-URL labels.failure_url_search_url=URL
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 43.5K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
assertNotNull("Actual array is null but expected is not", actual); assertEquals("Array lengths differ", expected.length, actual.length); for (int i = 0; i < expected.length; i++) { assertEquals("Arrays differ at index " + i, expected[i], actual[i]); } } // Test implementation of FessUser interface
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/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
// Test with multiple roles testUser.setRoleNames(new String[] { "admin", "user", "manager" }); assertTrue(fessUserBean.hasRoles(new String[] { "admin" })); assertTrue(fessUserBean.hasRoles(new String[] { "user", "guest" })); assertTrue(fessUserBean.hasRoles(new String[] { "manager", "viewer" }));
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/annotation/SecuredTest.java
String[] roles = secured.value(); assertNotNull(roles); assertEquals(0, roles.length); } // Test with special characters in roles @Secured({ "ROLE_USER-ADMIN", "ROLE_USER.VIEWER", "ROLE_USER_EDITOR", "ROLE$SPECIAL" }) static class SpecialCharacterRolesClass { } public void test_specialCharactersInRoles() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
assertEquals("2group/subgroup", permissionHelper.encode("{group}group/subgroup")); assertEquals("RAdministrators", permissionHelper.encode("{role}Administrators")); assertEquals("D1user with spaces", permissionHelper.encode("(deny){user}user with spaces")); assertEquals("DR_role_with_underscores", permissionHelper.encode("(deny){role}_role_with_underscores"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 13.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashTestUtils.java
* most key spaces are ANYTHING BUT uniformly distributed. A bit(i) in the input is said to * 'affect' a bit(j) in the output if two inputs, identical but for bit(i), will differ at output * bit(j) about half the time * * <p>Funneling is pretty simple to detect. The key idea is to find example keys which
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
* If the underlying constructor represents an abstract class * @throws IllegalAccessRuntimeException * If the number of actual and formal parameters differ, if unwrapping of primitive arguments fails, * or if after unwrapping, the parameter values cannot be converted to the corresponding formal parameter types,
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
compresses messages of size 1 KiB and larger. (Inbound messages are compressed or not based on the web socket server's configuration.) * New: Defer constructing `Inflater` and `Deflater` instances until they are needed. This saves memory if web socket compression is negotiated but not used. ## Version 4.5.0-RC1 _2020-03-17_
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
return; } if (expected == null || actual == null) { fail("Arrays are not equal: one is null"); } assertEquals("Array lengths differ", expected.length, actual.length); for (int i = 0; i < expected.length; i++) { assertEquals("Array element at index " + i + " differs", expected[i], actual[i]); } } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0)