- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 5,943 for FILE (0.02 sec)
-
src/main/java/org/codelibs/core/io/WriterUtil.java
} /** * Creates a {@link Writer} to output to a file with the default encoding. * * @param file the file (must not be {@literal null}) * @return a {@link Writer} to output to the file */ public static Writer create(final File file) { assertArgumentNotNull("file", file); try { return new FileWriter(file); } catch (final IOException e) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/io/FaultyFileSystem.kt
} override fun appendingSink( file: Path, mustExist: Boolean, ): Sink = FaultySink(super.appendingSink(file, mustExist), file) override fun sink( file: Path, mustCreate: Boolean, ): Sink = FaultySink(super.sink(file, mustCreate), file) inner class FaultySink( sink: Sink, private val file: Path, ) : ForwardingSink(sink) { override fun write(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
when(parent.getLocator()).thenReturn(locator); // Host is empty -> triggers master browser path URL anyUrlWithEmptyHost = new URL("file:/"); when(locator.getURL()).thenReturn(anyUrlWithEmptyHost); // Simulate failure to find master browser (UnknownHost wrapped in CIFSException)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ReaderUtil.java
/** * Creates a {@link Reader} to read from a file with the default encoding. * * @param file * the file (must not be {@literal null}) * @return a {@link Reader} to read from the file */ public static Reader create(final File file) { assertArgumentNotNull("file", file); try { return new FileReader(file); } catch (final IOException e) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
*/ public SmbFileInputStream(final SmbFile file) throws SmbException, MalformedURLException, UnknownHostException { this(file, SmbFile.O_RDONLY); } SmbFileInputStream(final SmbFile file, final int openFlags) throws SmbException, MalformedURLException, UnknownHostException { this.file = file; this.openFlags = openFlags & 0xFFFF; this.access = openFlags >>> 16 & 0xFFFF;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
if (file.isDirectory()) { traverseFileSystem(rootDir, file, handler); } else { final int pos = FileUtil.getCanonicalPath(rootDir).length(); final String filePath = FileUtil.getCanonicalPath(file); final String resourcePath = filePath.substring(pos + 1).replace('\\', '/'); final InputStream is = InputStreamUtil.create(file); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
exp = "http://example.com/ใในใ .html"; assertEquals(exp, transformer.decodeUrlAsName(url, false)); url = "file://C++.doc"; exp = "file://C++.doc"; assertEquals(exp, transformer.decodeUrlAsName(url, true)); url = "file://C .doc"; exp = "file://C .doc"; assertEquals(exp, transformer.decodeUrlAsName(url, true));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.invalid_design_jsp_file_name = Invalid JSP file. errors.design_jsp_file_does_not_exist = The JSP file does not exist. errors.design_file_name_is_not_found = The file name is not specified. errors.failed_to_write_design_image_file = Failed to upload an image file. errors.failed_to_update_jsp_file = Failed to update the JSP file. errors.design_file_name_is_invalid = The file name is invalid.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.invalid_design_jsp_file_name = Invalid JSP file. errors.design_jsp_file_does_not_exist = The JSP file does not exist. errors.design_file_name_is_not_found = The file name is not specified. errors.failed_to_write_design_image_file = Failed to upload an image file. errors.failed_to_update_jsp_file = Failed to update the JSP file. errors.design_file_name_is_invalid = The file name is invalid.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/kuromoji/KuromojiFileTest.java
public class KuromojiFileTest extends UnitFessTestCase { private KuromojiFile kuromojiFile; /* // TODO private File file1; @Override protected void setUp() throws Exception { file1 = File.createTempFile("kuromoji_", ".txt"); FileUtil.write( file1.getAbsolutePath(),
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.3K bytes - Viewed (0)