- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 407 for multiples (0.2 sec)
-
guava/src/com/google/common/math/Stats.java
* * <p>This is guaranteed to return zero if the dataset contains only exactly one finite value. It * is not guaranteed to return zero when the dataset consists of the same value multiple times, * due to numerical errors. However, it is guaranteed never to return a negative result. * * <h3>Non-finite values</h3> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 24.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
String[] permissions = fessUserBean.getPermissions(); assertEquals(1, permissions.length); assertEquals("read", permissions[0]); // Test with multiple permissions testUser.setPermissions(new String[] { "read", "write", "delete" }); permissions = fessUserBean.getPermissions(); assertEquals(3, permissions.length);
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/mylasta/direction/sponsor/FessJsonResourceProviderTest.java
assertNotNull(option2); // Each call should return a new instance assertNotSame(option1, option2); } public void test_provideMappingOption_consistency() { // Test that multiple calls provide consistent configuration JsonMappingOption option1 = provider.provideMappingOption(); JsonMappingOption option2 = provider.provideMappingOption();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
// Call aborted() multiple times assertTrue(exception.aborted()); assertTrue(exception.aborted()); assertTrue(exception.aborted()); } public void test_getUrl_multipleCallsReturnSameValue() { // Test that multiple calls to getUrl() return the same value String url = "http://example.com/test";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSortedSet.java
* .addAll(SINGLE_DIGIT_PRIMES) * .add(42) * .build(); * } * * <p>Builder instances can be reused; it is safe to call {@link #build} multiple times to build * multiple sets in series. Each set is a superset of the set created before it. * * @since 2.0 */ public static final class Builder<E> extends ImmutableSet.Builder<E> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 36.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
assertEquals(1000, result.length()); } public void test_getDetectText_whitespaceNormalization() { String text = "Text with\tmultiple\n\r spaces"; String result = languageHelper.getDetectText(text); assertEquals("Text with multiple spaces", result); } public void test_getSupportedLanguage_supported() { assertEquals("ja", languageHelper.getSupportedLanguage("ja"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/Task.kt
* task should not be executed again. Otherwise it returns a delay until the next execution. * * A task has at most one next execution. If the same task instance is scheduled multiple times, the * earliest one wins. This applies to both executions scheduled with [TaskRunner.Queue.schedule] and * those implied by the returned execution delay. * * Cancellation * ------------ *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java
assertSame(invertibleCryptographer, invertibles[i]); assertSame(oneWayCryptographer, oneWays[i]); } } // Test with multiple providers public void test_multipleProviders() { // Test that multiple providers can coexist independently InvertibleCryptographer inver1 = InvertibleCryptographer.createAesCipher("key1key1key1key1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/searchOptions.jsp
<fieldset class="mb-3"> <legend><la:message key="labels.index_lang" /></legend> <label for="langSearchOption"><la:message key="labels.index_lang" /></label> <la:select property="lang" styleId="langSearchOption" multiple="true" styleClass="form-control"> <c:forEach var="item" items="${langItems}"> <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option> </c:forEach> </la:select> </fieldset>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:47:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/searchOptions.jsp
<fieldset class="mb-3"> <legend><la:message key="labels.index_lang" /></legend> <label for="langSearchOption"><la:message key="labels.index_lang" /></label> <la:select property="lang" styleId="langSearchOption" multiple="true" styleClass="form-control"> <c:forEach var="item" items="${langItems}"> <la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option> </c:forEach> </la:select> </fieldset>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 05:47:48 UTC 2025 - 3.7K bytes - Viewed (0)