- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 6,070 for file3 (0.02 sec)
-
src/test/java/jcifs/smb/SmbFileTest.java
// Arrange & Act SmbFile file = new SmbFile(url, mockCifsContext); // Assert assertNotNull(file); assertEquals(mockCifsContext, file.getContext()); } @Test void testConstructorWithStringURL() throws MalformedURLException { // Arrange & Act SmbFile file = new SmbFile("smb://localhost/share/test.txt", mockCifsContext);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.8K 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(), "token1,seg1,reading1,pos1\ntoken2,seg2,reading2,pos2\ntoken3,seg3,reading3,pos3"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
*/ protected ClassTraversalUtil() { } /** The file extension for class files. */ protected static final String CLASS_SUFFIX = ".class"; /** The file extension for WAR files. */ protected static final String WAR_FILE_EXTENSION = ".war"; /** The entry prefix for class files inside a WAR file. */ protected static final String WEB_INF_CLASSES_PATH = "WEB-INF/classes/"; /**
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/helper/ProtocolHelper.java
if ("file".equals(resource.getProtocol())) { final File directory = new File(resource.getFile()); if (directory.exists() && directory.isDirectory()) { final File[] files = directory.listFiles(File::isDirectory); if (files != null) { for (final File file : files) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
import static org.junit.Assert.fail; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import org.codelibs.curl.Curl; import org.junit.After; import org.junit.Test; /** * Test class for ContentCache. * Tests memory-based and file-based content caching. */ public class ContentCacheTest {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/UploadForm.java
import org.lastaflute.web.validation.Required; /** * Form for uploading stopwords files to the Fess search engine. * Stopwords are common words that should be ignored during search indexing and querying. * This form is used in the admin interface to upload custom stopwords 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) -
cmd/storage-datatypes.go
File string `msg:"fl"` // File name as given in request. Exists bool `msg:"ex"` // Returns whether the file existed on disk. Error string `msg:"er,omitempty"` // Returns any error when reading. Data []byte `msg:"d"` // Contains all data of file. Modtime time.Time `msg:"m"` // Modtime of file on disk. }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 25 05:41:04 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); options.fileConfigIds = "file1,file2"; List<String> result = options.getFileConfigIdList(); assertNotNull(result); assertEquals(2, result.size()); assertTrue(result.contains("file1")); assertTrue(result.contains("file2")); } public void test_Options_getFileConfigIdList_withSingleId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
* File is a directory */ int ATTR_DIRECTORY = 0x10; /** * Files is marked to be archived */ int ATTR_ARCHIVE = 0x20; // extended file attribute encoding(others same as above) /** * File is compressed. */ int ATTR_COMPRESSED = 0x800; /** * File is a normal file. */ int ATTR_NORMAL = 0x080; /** * File is temporary.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileFilter.java
/** * Filter interface for SMB file filtering. * * This interface allows selective filtering of files * when listing directory contents in SMB shares. */ public interface SmbFileFilter { /** * Tests whether the specified SMB file should be included in a file list. * * @param file the SMB file to test for inclusion * @return whether the given file should be included
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0)