- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 383 for guests (0.05 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
assertFalse(fessUserBean.hasGroups(new String[] { "managers", "guests" })); // Test with multiple groups testUser.setGroupNames(new String[] { "developers", "testers", "managers" }); assertTrue(fessUserBean.hasGroups(new String[] { "developers" })); assertTrue(fessUserBean.hasGroups(new String[] { "testers", "guests" }));
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/helper/PermissionHelperTest.java
assertEquals("Rguest", permissionHelper.encode("(allow){role}guest")); assertEquals("2guest", permissionHelper.encode("(allow){group}guest")); assertEquals("1guest", permissionHelper.encode("(allow){USER}guest")); assertEquals("Rguest", permissionHelper.encode("(allow){ROLE}guest")); assertEquals("2guest", permissionHelper.encode("(allow){GROUP}guest"));
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/src/com/google/common/math/BigIntegerMath.java
* guess with an application of Newton's method, which sets guess := (guess + (x / guess)) / 2. * This iteration has the following two properties: * * a) every iteration (except potentially the first) has guess >= floor(sqrt(x)). This is * because guess' is the arithmetic mean of guess and x / guess, sqrt(x) is the geometric mean,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 18.8K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
checkRoundingUnnecessary(guessSquared == x); return guess; case FLOOR: case DOWN: if (x < guessSquared) { return guess - 1; } return guess; case CEILING: case UP: if (x > guessSquared) { return guess + 1; } return guess; case HALF_DOWN: case HALF_UP: case HALF_EVEN:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0) -
src/main/resources/fess_label_it.properties
labels.search_list_button_delete=Elimina labels.search_list_delete_confirmation=Sei sicuro di voler eliminare? labels.search_list_button_delete_all=Elimina tutto con questa query labels.search_list_delete_all_confirmation=Sei sicuro di voler eliminare tutto con questa query? labels.search_list_button_cancel=Annulla labels.failure_url_configuration=URL di errore 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.4K bytes - Viewed (0) -
src/main/resources/fess_message_it.properties
errors.design_file_name_is_invalid = Il nome del file non è valido. errors.design_file_is_unsupported_type = Questo tipo di file non è supportato. errors.failed_to_create_crawling_config_at_wizard = Impossibile creare la configurazione di scansione nella procedura guidata. errors.design_editor_disabled = Questa funzione è disabilitata. errors.not_found_on_file_system = Non trovato. Causa: {0}
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 12.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/ThrowablesTest.java
} // I guess it's technically a bug that ThrowIfUncheckedKnownUnchecked fires here. @SuppressWarnings("ThrowIfUncheckedKnownUnchecked") public void testThrowIfUnchecked_null() { assertThrows(NullPointerException.class, () -> throwIfUnchecked(null)); } @J2ktIncompatible @GwtIncompatible // propagateIfPossible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/ThrowablesTest.java
} // I guess it's technically a bug that ThrowIfUncheckedKnownUnchecked fires here. @SuppressWarnings("ThrowIfUncheckedKnownUnchecked") public void testThrowIfUnchecked_null() { assertThrows(NullPointerException.class, () -> throwIfUnchecked(null)); } @J2ktIncompatible @GwtIncompatible // propagateIfPossible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * Gets the web crawling configuration generated from the parsed GSA config. * * @return an optional containing the web configuration, or empty if no web URLs were found */ public OptionalEntity<WebConfig> getWebConfig() { return OptionalUtil.ofNullable(webConfig); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
// TODO(cpovirk): Consider using Object[] anyway. E[] array = (E[]) elements.toArray(); /* * For a Set, we guess that it contains no duplicates. That's just a guess for purpose of * sizing; if the Set uses different equality semantics, it might contain duplicates according * to equals(), and we will deduplicate those properly, albeit at some cost in allocations.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0)