- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 83 for accessible (0.09 sec)
-
src/test/java/org/codelibs/curl/CurlResponseTest.java
byte[] data = "test content".getBytes(); ContentCache cache = new ContentCache(data); response.setContentCache(cache); // ContentCache is not directly accessible, but we can test through content methods assertNotNull(response); } @Test public void testGetContentAsStringWithCache() throws IOException { CurlResponse response = new CurlResponse();
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 11.5K bytes - Viewed (0) -
guava/src/com/google/common/cache/Cache.java
* with a differently behaving {@code loader}. For example, a call that requests a short timeout * for an RPC may wait for a similar call that requests a long timeout, or a call by an * unprivileged user may return a resource accessible only to a privileged user making a similar * call. To prevent this problem, create a key object that includes all values that affect the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
assertTrue("Constructor should be private", java.lang.reflect.Modifier.isPrivate(constructor.getModifiers())); // Test that constructor is accessible when made accessible constructor.setAccessible(true); KuromojiCSVUtil instance = constructor.newInstance(); assertNotNull(instance);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
assertTrue("Constructor should be protected", java.lang.reflect.Modifier.isProtected(constructor.getModifiers())); // Test that constructor is accessible when made accessible constructor.setAccessible(true); ThreadDumpUtil instance = constructor.newInstance(); assertNotNull(instance);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
/** * Deletes a character mapping item from the specified dictionary. * <p> * This method removes the specified character mapping item from the dictionary * if the dictionary file exists and is accessible. * </p> * * @param dictId the dictionary ID to delete the character mapping item from * @param charMappingItem the character mapping item to delete */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
// Verify the exception is serializable (has serialVersionUID) assertNotNull(exception); // The serialVersionUID field exists and is accessible at compile time assertTrue(exception instanceof java.io.Serializable); } public void test_stackTrace() { // Test that stack trace is properly preserved
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java
if (message instanceof Smb2ReadRequest) { return ((Smb2ReadRequest) message).getReadLength() > 1048576; // 1MB } if (message instanceof Smb2WriteRequest) { // Data length not accessible, assume large writes for now return true; } return false; } private boolean isMetadataOperation(CommonServerMessageBlock message) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* * <p>Duplicate host configurations allow administrators to define hostname patterns * that should be treated as equivalent during crawling. This helps avoid indexing * duplicate content from the same logical site that may be accessible via different * hostnames (e.g., www.example.com and example.com).</p> */ public class DuplicateHostService extends FessAppService { /** * DBFlute behavior for duplicate host operations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
* old Android Ice Cream Sandwich release), then this class throws an exception instead of creating * a file or directory that would be more accessible. */ @J2ktIncompatible @GwtIncompatible @J2ObjCIncompatible abstract class TempFileCreator { static final TempFileCreator INSTANCE = pickSecureCreator(); /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
* Returns a new {@code MutableClassToInstanceMap} instance backed by a given empty {@code * backingMap}. The caller surrenders control of the backing map, and thus should not allow any * direct references to it to remain accessible. */ public static <B extends @Nullable Object> MutableClassToInstanceMap<B> create( Map<Class<? extends @NonNull B>, B> backingMap) { return new MutableClassToInstanceMap<>(backingMap); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 6.7K bytes - Viewed (0)