Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 256 for FileName (0.06 sec)

  1. src/main/java/jcifs/internal/fscc/FileRenameInformation2.java

     *
     * @author mbechler
     */
    public class FileRenameInformation2 implements FileInformation {
    
        private boolean replaceIfExists;
        private String fileName;
    
        /**
         * Default constructor for decoding.
         */
        public FileRenameInformation2() {
        }
    
        /**
         * Constructs file rename information.
         *
         * @param name the new file name
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java

        private final int sid, informationLevel;
        private int resumeKey;
        private final int flags;
        private String filename;
    
        Trans2FindNext2(final int sid, final int resumeKey, final String filename) {
            this.sid = sid;
            this.resumeKey = resumeKey;
            this.filename = filename;
            command = SMB_COM_TRANSACTION2;
            subCommand = TRANS2_FIND_NEXT2;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java

                e.filename = readString(buffer, bufferIndex + 94, e.fileNameLength);
    
                /* lastNameOffset ends up pointing to either to
                 * the exact location of the filename(e.g. Win98)
                 * or to the start of the entry containing the
                 * filename(e.g. NT). Ahhrg! In either case the
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/design/admin_design.jsp

                                <div class="card-body">
                                    <div class="form-group row">
                                        <la:errors property="fileName"/>
                                        <la:select styleId="fileName" property="fileName" styleClass="form-control">
                                            <c:forEach var="item" varStatus="s" items="${fileNameItems}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralTest.java

            pathField.set(trans2GetDfsReferral, filename);
    
            // When
            String result = trans2GetDfsReferral.toString();
    
            // Then
            assertNotNull(result);
            assertTrue(result.contains("Trans2GetDfsReferral"));
            assertTrue(result.contains("maxReferralLevel=0x3"));
            assertTrue(result.contains("filename=" + filename));
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/dfs/DfsReferralRequestBuffer.java

        /**
         * Constructs a DFS referral request buffer
         *
         * @param filename the DFS path to request referral for
         * @param maxReferralLevel the maximum referral level to request
         */
        public DfsReferralRequestBuffer(final String filename, final int maxReferralLevel) {
            this.path = filename;
            this.maxReferralLevel = maxReferralLevel;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/Lmhosts.java

        }
    
        synchronized static NbtAddress getByName(final Name name) {
            NbtAddress result = null;
    
            try {
                if (FILENAME != null) {
                    final File f = new File(FILENAME);
                    final long lm = f.lastModified();
    
                    if (lm > lastModified) {
                        lastModified = lm;
                        TAB.clear();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. cmd/callhome.go

    func sendHealthInfo(ctx context.Context, healthInfo madmin.HealthInfo) error {
    	url := globalSubnetConfig.BaseURL + subnetHealthPath
    
    	filename := fmt.Sprintf("health_%s.json.gz", UTCNow().Format("20060102150405"))
    	url += "?filename=" + filename
    
    	_, err := globalSubnetConfig.Upload(url, filename, createHealthJSONGzip(ctx, healthInfo))
    	return err
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/MultipartBodyTest.kt

          |Content-Type: multipart/mixed; boundary=BbC04y
          |
          |--BbC04y
          |Content-Disposition: file; filename="file1.txt"
          |Content-Type: text/plain; charset=utf-8
          |
          |... contents of file1.txt ...
          |--BbC04y
          |Content-Disposition: file; filename="file2.gif"
          |Content-Transfer-Encoding: binary
          |Content-Type: image/gif
          |
          |... contents of file2.gif ...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top