- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 256 for FileName (0.04 sec)
-
src/main/java/org/codelibs/fess/job/PythonJob.java
super(); } /** The Python script filename to execute */ protected String filename; /** List of command-line arguments to pass to the Python script */ protected List<String> argList = new ArrayList<>(); /** * Sets the Python script filename to execute. * * @param filename the Python script filename (relative to WEB-INF/env/python/resources)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java
int action; int fileNameLength; String fileName; /** * Default constructor for decoding. */ public FileNotifyInformationImpl() { } @Override public int getAction() { return this.action; } @Override public String getFileName() { return this.fileName; } /** * Gets the offset to the next entry.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadata.java
Object getKey(); /** * Get the filename of this metadata on the local repository. * * @param repository the remote repository it came from * @return the filename */ String getLocalFilename(ArtifactRepository repository); /** * Get the filename of this metadata on the remote repository. * * @return the filename */ String getRemoteFilename(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComDelete.java
*/ package jcifs.smb1.smb1; import jcifs.smb1.util.Hexdump; class SmbComDelete extends ServerMessageBlock { private final int searchAttributes; SmbComDelete(final String fileName) { this.path = fileName; command = SMB_COM_DELETE; searchAttributes = ATTR_HIDDEN | ATTR_HIDDEN | ATTR_SYSTEM; } @Override int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
public String getName() { return this.filename; } @Override public int getType() { return SmbConstants.TYPE_FILESYSTEM; } /** * @return the fileIndex */ @Override public int getFileIndex() { return this.fileIndex; } /** * Gets the filename. * * @return the filename */ public String getFilename() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
this.fileIndex = fileIndex; } /** * Sets the file name pattern for filtering directory results * * @param fileName * the fileName to set */ public void setFileName(final String fileName) { this.fileName = fileName; } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2Request#createResponse(jcifs.CIFSContext,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java
// Verify size calculation doesn't include filename int expectedSize = Smb2Constants.SMB2_HEADER_LENGTH + 32; assertEquals(((expectedSize + 7) & ~7), request.size()); } @Test @DisplayName("Test setFileName method with non-null value") void testSetFileNameNonNull() { request = new Smb2QueryDirectoryRequest(mockConfig); String fileName = "test.txt";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2FindFirst2ResponseTest.java
writeInt4(SmbFile.ATTR_DIRECTORY, buffer, bufferIndex + 56); // extFileAttributes String filename = "directory1"; byte[] filenameBytes = filename.getBytes(StandardCharsets.UTF_8); writeInt4(filenameBytes.length, buffer, bufferIndex + 60); // fileNameLength // Copy filename into buffer at offset 94 System.arraycopy(filenameBytes, 0, buffer, 94, filenameBytes.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferral.java
* @param filename the DFS path to get referrals for */ public Trans2GetDfsReferral(final Configuration config, final String filename) { this(config, filename, 3); } /** * Constructs a Trans2GetDfsReferral request with specified referral level. * * @param config the configuration to use * @param filename the DFS path to get referrals for
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2FindNext2Test.java
assertEquals((byte) 0x00, dst[11]); // filename bytes, then null terminator byte[] nameBytes = name.getBytes(); for (int i = 0; i < nameBytes.length; i++) { assertEquals(nameBytes[i], dst[12 + i], "Filename byte mismatch at index " + i); } assertEquals((byte) 0x00, dst[12 + nameBytes.length], "Filename must be null-terminated"); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.9K bytes - Viewed (0)