- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 5,539 for To (0.26 sec)
-
src/main/java/org/codelibs/curl/io/ContentCache.java
Files.delete(file.toPath()); } } /** * Returns an InputStream to read the content from the cache. * If the content is stored in a file, a FileInputStream is returned. * Otherwise, a ByteArrayInputStream is returned to read the data from memory. * * @return an InputStream to read the cached content * @throws IOException if an I/O error occurs while creating the InputStream */
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseManager.java
// Note: We would need to add a method to SmbFile to set cached attributes // For now, just return the file object return file; } catch (Exception e) { log.warn("Failed to create SmbFile for {}: {}", filePath, e.getMessage()); throw new IOException("Failed to create SmbFile: " + e.getMessage(), e); } } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
searchPaging(data, form); }); } /** * Reset the search criteria and pager to default state. * Clears all filters and returns to the initial page view. * * @param form The search form to reset * @return HTML response showing the reset stemmer override list */ @Execute @Secured({ ROLE, ROLE + VIEW })
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
/** List to store captured output lines. */ private final List<String> list = new LinkedList<>(); /** Maximum number of lines to buffer. */ private final int maxLineBuffer; /** * Constructor for InputStreamThread. * @param is The input stream to read from. * @param charset The character encoding to use.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
* * @param config the configuration to use * @param filename the DFS path to get referrals for */ public Trans2GetDfsReferral(final Configuration config, final String filename) { this(config, filename, 3); } /** * Constructs a Trans2GetDfsReferral request with specified referral level. * * @param config the configuration to use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
logger.warn("Failed to get sAMAccountName: {}", groupName, e); } return OptionalEntity.empty(); } /** * Processes sub-roles for the specified LDAP user. * * @param ldapUser the LDAP user to process sub-roles for * @param bindDn the bind DN for LDAP connection * @param subRoleSet the set of sub-roles to process
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
ComponentUtil.setFessConfig(fessConfig); // Execute and expect exception to be handled try { String result = pingSearchEngineJob.execute(); // Job should handle exception gracefully assertNotNull(result); } catch (Exception e) { // Exception is expected to be caught within the job assertTrue(e.getMessage().contains("Connection failed"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/CertificatePinner.kt
* * * **Any number of subdomains**: Use two asterisks to like `**.publicobject.com` to match any * number of prefixes (`us-west.www.publicobject.com`, `www.publicobject.com`) including no * prefix at all (`publicobject.com`). For most applications this is the best way to configure * certificate pinning. * * * **Exactly one subdomain**: Use a single asterisk like `*.publicobject.com` to match exactly
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 14.1K bytes - Viewed (0) -
mockwebserver/README.md
### Motivation This library makes it easy to test that your app Does The Right Thing when it makes HTTP and HTTPS calls. It lets you specify which responses to return and then verify that requests were made as expected. Because it exercises your full HTTP stack, you can be confident that you're testing everything. You can even copy & paste HTTP responses from your real web
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 13:40:52 UTC 2025 - 8.1K bytes - Viewed (0)