- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 3,716 for file1 (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/UploadForm.java
import org.lastaflute.web.validation.Required; /** * Form for uploading synonym files to the Fess search engine. * Synonyms are words or phrases that should be treated as equivalent during search operations. * This form is used in the admin interface to upload custom synonym dictionary files. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/EditForm.java
} /** * The name of the design file being edited. * This specifies which template or design file to modify. */ public String fileName; /** * The content of the design file. * This contains the actual template code, CSS, or other design content * that will be saved to the specified file. */ public String content;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
} return null; } // GET /api/admin/storage/download/{id}/ /** * Downloads a file from storage. * @param id The ID of the file to download. * @return A StreamResponse containing the file content. */ @Execute public StreamResponse get$download(final String id) { final PathInfo pi = convertToItem(id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
final File repository = createRepositoryFile(); return DiskFileItemFactory.builder().setBufferSize(sizeThreshold).setFile(repository).get(); } protected int getSizeThreshold() { return ComponentUtil.getFessConfig().getHttpFileuploadThresholdSizeAsInteger(); } protected File createRepositoryFile() { return new File(getRepositoryPath()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} else { file.update(protwordsItem); } }); } /** * Deletes a protected words item. * @param dictId the dictionary ID * @param protwordsItem the item to delete */ public void delete(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java
ComponentUtil.setFessConfig(null); super.tearDown(); } private void deleteDirectory(File dir) { if (dir.isDirectory()) { File[] files = dir.listFiles(); if (files != null) { for (File file : files) { deleteDirectory(file); } } } dir.delete(); } // Test getExecuteType method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* * If strict resource lifecycle is used, make sure you close the individual files after use. * * @param filter * a file filter to exclude files from the results * @return An array of {@code SmbResource} objects * @throws SmbException if an error occurs while listing the files */ public SmbFile[] listFiles(final SmbFileFilter filter) throws SmbException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/main/java/jcifs/ACE.java
*/ public interface ACE { /** * Permission to read data from a file or list directory contents */ int FILE_READ_DATA = 0x00000001; // 1 /** * Permission to write data to a file or add files to a directory */ int FILE_WRITE_DATA = 0x00000002; // 2 /** * Permission to append data to a file or add subdirectories */ int FILE_APPEND_DATA = 0x00000004; // 3 /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java
import org.lastaflute.web.validation.Required; /** * Form for uploading bad word files to the Fess search engine. * This form is used in the admin interface to upload bad word dictionary files * that contain words to be filtered from search results. */ public class UploadForm { /** * The multipart file containing bad words to be uploaded. * This file should contain a list of words that will be filtered from search results. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
} } /** * Handles file download requests for SMB files. * @param req the HTTP servlet request * @param resp the HTTP servlet response * @param file the SMB file to download * @throws IOException if an I/O error occurs */ protected void doFile(final HttpServletRequest req, final HttpServletResponse resp, final SmbFile file) throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0)