- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 2,180 for bile (1.68 sec)
-
src/main/java/org/codelibs/core/io/FileUtil.java
* * @param file * The file. Must not be {@literal null}. * @return The text read from the file. */ public static String readText(final File file) { assertArgumentNotNull("file", file); return readText(file, Charset.defaultCharset().name()); } /** * Reads text from a file with the specified encoding. *Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Nov 22 11:21:59 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
/** * File transformer implementation for the Fess search engine. * This transformer handles file-based document transformation and content extraction * using the Fess file transformation process with support for various file types. * * <p>It extends AbstractFessFileTransformer to provide specialized file processing * capabilities using the appropriate extractor for each file type.</p> */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentCache.java
this.data = data.clone(); this.file = null; } /** * Constructs a ContentCache with the given file. * * @param file the file containing the content * @throws IllegalArgumentException if file is null */ public ContentCache(final File file) { if (file == null) { throw new IllegalArgumentException("file must not be null"); }
Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Thu Nov 20 13:34:13 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
*/ public static final int FILE_OPEN_IF = 0x3; /** * If file exists, overwrite it. Otherwise fail */ public static final int FILE_OVERWRITE = 0x4; /** * If file exists, overwrite it. Otherwise create the file */ public static final int FILE_OVERWRITE_IF = 0x5; /** * File being created or opened must be a directoryRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/mime.map
application/zip zip jar # ZIP Compressed File audio/basic au snd # Audio Sound File audio/x-aiff aif aiff aifc # AIFF Sound File audio/x-midi mid # MIDI Sound File audio/x-pn-realaudio ra ram rm rpm # REALAUDIO Sound File audio/x-wav wav # WAV Sound File audio/x-mpegurl mp3 # MP3 Sound File
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 5.9K bytes - Viewed (0) -
src/test/resources/jcifs/smb1/util/mime.map
application/zip zip jar # ZIP Compressed File audio/basic au snd # Audio Sound File audio/x-aiff aif aiff aifc # AIFF Sound File audio/x-midi mid # MIDI Sound File audio/x-pn-realaudio ra ram rm rpm # REALAUDIO Sound File audio/x-wav wav # WAV Sound File audio/x-mpegurl mp3 # MP3 Sound File
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java
try { final int maxCount = 50; final int numOfThread = 10; final File file = File.createTempFile("crawler-", ""); file.delete(); file.mkdirs(); file.deleteOnExit(); fileTransformer.setPath(file.getAbsolutePath()); crawler.addUrl(url); crawler.crawlerContext.setMaxAccessCount(maxCount);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
/** * Writes data to the specified file path. * * @param path the file path to write to * @param data the data to write */ protected void write(final String path, final byte[] data) { validateFilePath(path); LdiFileUtil.write(path, data); } /** * Validates the file path. * * @param path the file path to validate */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
fp = 0L; } } if (file instanceof SmbNamedPipe && file.unc.startsWith("\\pipe\\")) { file.unc = file.unc.substring(5); file.send(new TransWaitNamedPipe("\\pipe" + file.unc), new TransWaitNamedPipeResponse()); } file.open(openFlags, access | SmbConstants.FILE_WRITE_DATA, SmbFile.ATTR_NORMAL, 0);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
} // Test basic properties assertTrue(file.exists(), "File should exist"); assertTrue(file.canRead(), "File should be readable"); assertTrue(file.canWrite(), "File should be writable"); assertEquals(content.length(), file.length(), "File length should match"); // Test timestamps long lastModified = file.lastModified();Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0)