- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 1,152 for handle (0.19 sec)
-
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
} }; try { Artifact artifact = new Artifact("fess-theme-test", "1.0.0"); mockThemeHelper.install(artifact); // Some environments may handle invalid zip gracefully assertTrue(true); } catch (Exception e) { // Should throw ThemeException or ZipException
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
// load timeout multiplier. Or we could try to use a CPU time bound instead of wall clock time // bound. But these ideas are harder to implement. We do not try to detect or handle a // user-specified -XX:+DisableExplicitGC. // // TODO(user): Consider using // java/lang/management/OperatingSystemMXBean.html#getSystemLoadAverage() //
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
assertNotNull(result); } public void test_getMatchedLabelValueSet_nullPath() { try { labelTypeHelper.getMatchedLabelValueSet(null); fail("Should handle null path gracefully or throw appropriate exception"); } catch (Exception e) { // Expected behavior for null path assertNotNull(e); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
*/ public LuceneQueryParser(final String f, final Analyzer a) { super(f, a); defaultField = f; } /** * Overrides the field query creation to handle quoted queries specially. * For quoted queries on the default field, creates a phrase query instead of a term query. * * @param field the field to query * @param queryText the query text
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt
assertThat(request.tag<Any>()).isSameAs(objectTag) assertThat(request.tag(Any::class)).isSameAs(objectTag) assertThat(request.tag(String::class)).isSameAs(stringTag) // TODO check for Jvm or handle Long/long correctly // assertThat(request.tag(Long::class)).isSameAs(longTag) } /** Confirm that we don't accidentally share the backing map between objects. */ @Test fun tagsAreImmutable() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
@Test @DisplayName("Test toString with null values") void testToStringWithNullValues() { SmbShareInfo info = new SmbShareInfo(); String str = info.toString(); // Should handle null values gracefully assertNotNull(str); assertTrue(str.startsWith("SmbShareInfo[")); assertTrue(str.contains("netName=null")); assertTrue(str.contains("type=0x"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
guava/src/com/google/common/escape/ArrayBasedUnicodeEscaper.java
* <p>A good example of usage of this class is for HTML escaping where the replacement array * contains information about the named HTML entities such as {@code &} and {@code "} while * {@link #escapeUnsafe} is overridden to handle general escaping of the form {@code &#NNNNN;}. * * <p>The size of the data structure used by {@link ArrayBasedUnicodeEscaper} is proportional to the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/config/PropertyConfiguration.java
// Multi-Channel Configuration value = props.getProperty("jcifs.smb.client.useMultiChannel"); if (value != null) { this.useMultiChannelExplicitlySet = true; // Handle invalid boolean values by falling back to default if ("true".equalsIgnoreCase(value)) { this.useMultiChannel = true; } else if ("false".equalsIgnoreCase(value)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbTreeTest.java
doNothing().when(idempotentTree).close(); // Close multiple times idempotentTree.close(); idempotentTree.close(); // Verify close was called, but implementation should handle idempotency verify(idempotentTree, times(2)).close(); } /** * Test for unwrap with null parameter. * Verifies behavior when null is passed to unwrap. */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/bufio/bufio.go
b.r = b.w line = b.buf err = ErrBufferFull break } s = b.w - b.r // do not rescan area we scanned before b.fill() // buffer is not full } // Handle last byte, if any. if i := len(line) - 1; i >= 0 { b.lastByte = int(line[i]) b.lastRuneSize = -1 } return } // ReadLine is a low-level line-reading primitive. Most callers should use
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 22K bytes - Viewed (0)