- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for BOUNDARY (0.05 sec)
-
android/guava-tests/test/com/google/common/math/MathTesting.java
static final Iterable<Integer> NONZERO_INTEGER_CANDIDATES; static final Iterable<Integer> ALL_INTEGER_CANDIDATES; static { ImmutableSet.Builder<Integer> intValues = ImmutableSet.builder(); // Add boundary values manually to avoid over/under flow (this covers 2^N for 0 and 31). intValues.add(Integer.MAX_VALUE - 1, Integer.MAX_VALUE); // Add values up to 40. This covers cases like "square of a prime" and such.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
} } public void test_interval_boundary_values() { // Test interval boundary values quickly dataIndexHelper.setCrawlingExecutionInterval(0L); dataIndexHelper.setCrawlingExecutionInterval(1L); dataIndexHelper.setCrawlingExecutionInterval(Long.MAX_VALUE); assertTrue("Boundary value tests should be fast", true); } public void test_performance_optimization() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/MemoryUtilTest.java
} catch (Exception e) { // Expected for negative values } // Test boundary values assertEquals("1bytes", MemoryUtil.byteCountToDisplaySize(1L)); assertEquals("999bytes", MemoryUtil.byteCountToDisplaySize(999L)); // Test very large values close to EB boundary assertEquals("1.024EB", MemoryUtil.byteCountToDisplaySize(FileUtils.ONE_EB));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
assertNotNull(rapidProvider); } } // Test boundary conditions for time adjustments public void test_boundaryTimeAdjustments() { // Test zero boundary testBoundaryValue(0L); // Test one millisecond boundaries testBoundaryValue(1L); testBoundaryValue(-1L);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/KotlinSourceModernTest.kt
mockWebServer.close() } @Test fun multipartBody() { val multipartBody: MultipartBody = MultipartBody.Builder().build() val type: MediaType = multipartBody.type val boundary: String = multipartBody.boundary val size: Int = multipartBody.size val parts: List<MultipartBody.Part> = multipartBody.parts val part: MultipartBody.Part = multipartBody.part(0)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 46.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
query.highlight.tag.pre=<strong> # Tag to use after highlighted text. query.highlight.tag.post=</strong> # Boundary characters for query highlighting. query.highlight.boundary.chars=u0009u000Au0013u0020 # Maximum scan for query highlight boundaries. query.highlight.boundary.max.scan=20 # Scanner type for query highlight boundaries. query.highlight.boundary.scanner=chars # Encoder type for query highlighting. query.highlight.encoder=default
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
documentList.add(doc2); QueryResponseList qrList = new QueryResponseList(documentList, 0, 10, 0); // Test boundary indexes assertEquals(doc1, qrList.get(0)); assertEquals(doc2, qrList.get(1)); // Test subList with boundary indexes List<Map<String, Object>> subList = qrList.subList(0, 2); assertEquals(2, subList.size());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String QUERY_HIGHLIGHT_BOUNDARY_CHARS = "query.highlight.boundary.chars"; /** The key of the configuration. e.g. 20 */ String QUERY_HIGHLIGHT_BOUNDARY_MAX_SCAN = "query.highlight.boundary.max.scan"; /** The key of the configuration. e.g. chars */ String QUERY_HIGHLIGHT_BOUNDARY_SCANNER = "query.highlight.boundary.scanner"; /** The key of the configuration. e.g. default */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
okhttp/api/jvm/okhttp.api
public final fun -deprecated_parts ()Ljava/util/List; public final fun -deprecated_size ()I public final fun -deprecated_type ()Lokhttp3/MediaType; public final fun boundary ()Ljava/lang/String; public fun contentLength ()J public fun contentType ()Lokhttp3/MediaType; public fun isOneShot ()Z public final fun part (I)Lokhttp3/MultipartBody$Part;
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 69.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertTrue(execJob.jvmOptions.contains("-Xdebug")); assertTrue(execJob.jvmOptions.stream().anyMatch(opt -> opt.startsWith("-Xlog:gc"))); } // Test edge cases and boundary conditions public void test_edgeCases() { // Test with empty strings execJob.sessionId(""); assertEquals("", execJob.sessionId); execJob.logFilePath("");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0)