- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 107 for FileName (0.06 sec)
-
src/test/java/jcifs/internal/fscc/FileRenameInformation2Test.java
assertEquals(fileName, decodedName); // Verify bytes written assertEquals(20 + nameLength, bytesWritten); } @Test @DisplayName("Test encode with replaceIfExists false") void testEncodeWithReplaceIfExistsFalse() { String fileName = "newfile.txt"; FileRenameInformation2 info = new FileRenameInformation2(fileName, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
final int fileType; if (fileName.startsWith("system") && fileName.endsWith(".properties")) { fileType = 1; } else if (fileName.startsWith("gsa") && fileName.endsWith(".xml")) { fileType = 2; } else if (fileName.endsWith(".bulk")) { fileType = 3; } else if (fileName.startsWith("fess") && fileName.endsWith(".json")) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.3K bytes - Viewed (0) -
cmd/admin-bucket-handlers.go
continue } bucket, fileName := slc[0], slc[1] if fileName == objectLockConfig { reader, err := file.Open() if err != nil { rpt.SetStatus(bucket, fileName, err) continue } config, err := objectlock.ParseObjectLockConfig(reader) if err != nil { rpt.SetStatus(bucket, fileName, fmt.Errorf("%s (%s)", errorCodes[ErrMalformedXML].Description, err))
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 33.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
String docid = "1234567890abcdef"; // Call the String version directly String filename = thumbnailManager.getImageFilename(docid); assertNotNull(filename); assertTrue(filename.endsWith(".png")); assertTrue(filename.contains("/")); assertTrue(filename.contains(docid)); } // Test getImageFilename with custom settings
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
ComponentUtil.setFessConfig(null); super.tearDown(); } // Test filename setter public void test_filename() { assertNull(pythonJob.filename); PythonJob result = pythonJob.filename("test.py"); assertSame(pythonJob, result); assertEquals("test.py", pythonJob.filename); } // Test single argument addition public void test_arg() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileBothDirectoryInfoTest.java
private byte[] createValidBufferNonUnicode(String filename, String shortName) { return createValidBuffer(filename, shortName, false); } private byte[] createValidBufferWithNullTermination(String filename, String shortName, boolean unicode) { // Create buffer with extra space for null termination int filenameLength = unicode ? (filename.length() * 2) + 2 : filename.length() + 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java
void testFilenameHandling(String filename) { // Test various filename formats trans2FindNext2 = new Trans2FindNext2(config, TEST_SID, TEST_RESUME_KEY, filename, TEST_BATCH_COUNT, TEST_BATCH_SIZE); byte[] buffer = new byte[1024]; int written = trans2FindNext2.writeParametersWireFormat(buffer, 0); // Verify filename is written and can be read back
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
/** * Creates an artifact instance from a filename. * * @param artifactType the type of the artifact * @param filename the filename to parse * @return an artifact instance */ protected Artifact getArtifactFromFileName(final ArtifactType artifactType, final String filename) { return getArtifactFromFileName(artifactType, filename, null); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImplTest.java
private byte[] createValidNotificationBuffer(String fileName, int action) { return createNotificationBufferWithNextOffset(fileName, action, 0); } /** * Helper method to create a notification buffer with specified next offset */ private byte[] createNotificationBufferWithNextOffset(String fileName, int action, int nextOffset) { byte[] fileNameBytes = fileName.getBytes(StandardCharsets.UTF_16LE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)