- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 495 for okcurl (0.1 seconds)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
/** * Updates the entire mapping file content from the provided input stream. * * @param in the input stream containing the new mapping file content * @throws IOException if an I/O error occurs during the update */ public synchronized void update(final InputStream in) throws IOException { try (MappingUpdater updater = new MappingUpdater(null)) { reload(updater, in); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 20 05:56:45 GMT 2025 - 15.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TemporaryFileInputStream.java
return fileInputStream.available(); } /** * Closes this input stream and releases any system resources associated with the stream. * @throws IOException if an I/O error occurs. */ @Override public void close() throws IOException { try { fileInputStream.close(); } finally { FileUtil.deleteInBackground(tempFile); } }
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Nov 22 13:28:22 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
return new File(path).getName(); } /** * Updates the dictionary file with the given input stream. * * @param in The input stream. * @throws IOException If an I/O error occurs. */ public synchronized void update(final InputStream in) throws IOException { try (KuromojiUpdater updater = new KuromojiUpdater(null)) { reload(updater, in); } }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
} /** * Updates the dictionary file with content from the input stream. * @param in the input stream containing the new content * @throws IOException if an I/O error occurs */ public synchronized void update(final InputStream in) throws IOException { try (ProtwordsUpdater updater = new ProtwordsUpdater(null)) { reload(updater, in); } }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/SmbjEngine.java
} /** * Generates a Type 1 NTLM message. * @param arg0 The domain. * @param arg1 The workstation. * @return The Type 1 message. * @throws NTLMEngineException if an NTLM engine error occurs. */ @Override public String generateType1Msg(final String arg0, final String arg1) throws NTLMEngineException { // TODO Auto-generated method stub return null; } /**Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTreeInternal.java
/** * Connects and performs logon to the tree using the specified context * @param tf the CIFS context to use for connection * @throws SmbException if an SMB error occurs during connection */ @Deprecated void connectLogon(CIFSContext tf) throws SmbException; /** * Sends an SMB request and returns the response * @param <T> the response typeCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/jcifs/SmbFileHandle.java
/** * Closes this file handle and optionally sets the last write time * * @param lastWriteTime the last write time to set, or 0 to leave unchanged * @throws CIFSException if an error occurs while closing the file */ void close(long lastWriteTime) throws CIFSException; /** * {@inheritDoc} * * @see java.lang.AutoCloseable#close() */ @OverrideCreated: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/filter/WebApiFilter.java
* * @param request The servlet request * @param response The servlet response * @param chain The filter chain * @throws IOException If an I/O error occurs * @throws ServletException If a servlet error occurs */ @Override public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain) throws IOException, ServletException {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.8K bytes - Click Count (0) -
.github/stale.yml
markComment: >- This issue has been automatically marked as stale because it has not had recent activity. It will be closed after 15 days if no further activity occurs. Thank you for your contributions. # Comment to post when removing the stale label. # unmarkComment: > # Your comment here. # Comment to post when closing a stale Issue or Pull Request. # closeComment: >
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Mon Jan 24 04:36:59 GMT 2022 - 2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java
*/ default int getMaxReadingNum() { return 10; } /** * Initializes the converter. * * @throws IOException if an I/O error occurs during initialization. */ void init() throws IOException; /** * Converts the given text into a list of readings based on the specified field and languages. *Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 17 14:28:21 GMT 2025 - 1.6K bytes - Click Count (0)