Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for getFileName (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/esreq/AdminEsreqAction.java

                                    }
                                }
                            });
                } catch (final Exception e) {
                    logger.warn("Failed to process request file: {}", form.requestFile.getFileName(), e);
                    throwValidationError(messages -> messages.addErrorsInvalidHeaderForRequestFile(GLOBAL, e.getMessage()),
                            () -> asListHtml(this::saveToken));
                }
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java

    
        /**
         * @return the fileId
         */
        public byte[] getFileId () {
            return this.fileId;
        }
    
    
        /**
         * @return the fileName
         */
        public String getFileName () {
            return this.fileName;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.SmbBasicFileInfo#getSize()
         */
        @Override
        public long getSize () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java

            validateApi(form, messages -> {});
            if (form.file == null) {
                throwValidationErrorApi(messages -> messages.addErrorsStorageNoUploadFile(GLOBAL));
            }
            final String fileName = form.file.getFileName();
            try {
                uploadObject(getObjectName(form.path, fileName), form.file);
                saveInfo(messages -> messages.addSuccessUploadFileToStorage(GLOBAL, fileName));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/FileNotifyInformation.java

    
        /**
         * @return the action triggering this entry (FILE_ACTION_*)
         */
        int getAction ();
    
    
        /**
         * @return the file name affected by the action
         */
        String getFileName ();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

            if (maxSiteLength > -1) {
                return StringUtils.abbreviate(value, maxSiteLength);
            }
            return value;
        }
    
        default String getFileName(final String url, final String encoding) {
            if (StringUtil.isBlank(url)) {
                return StringUtil.EMPTY;
            }
    
            int idx = 0;
            String u = url;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java

        /**
         * @return the fileId
         */
        public final byte[] getFileId () {
            return this.fileId;
        }
    
    
        /**
         * @return the fileName
         */
        public final String getFileName () {
            return this.fileName;
        }
    
    
        /**
         * @return the createContexts
         */
        public CreateContextResponse[] getCreateContexts () {
            return this.createContexts;
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/ResourceUtil.java

            File dir = null;
            final URL url = getResource(path);
            if ("file".equals(url.getProtocol())) {
                final int num = path.split("/").length;
                dir = new File(getFileName(url));
                for (int i = 0; i < num; ++i) {
                    dir = dir.getParentFile();
                }
            } else {
                dir = new File(JarFileUtil.toJarFilePath(url));
            }
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            }
    
            @Override
            public int getFileSize() {
                return (int) fileItem.getSize();
            }
    
            @Override
            public String getFileName() {
                return getBaseFileName(fileItem.getName());
            }
    
            protected String getBaseFileName(final String filePath) {
                final String fileName = new File(filePath).getName();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Oct 23 13:27:21 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/WatchTest.java

                infos.addAll(notifications);
            }
            boolean found = false;
            for ( FileNotifyInformation fi : notifications ) {
                if ( fi.getAction() == action && fi.getFileName().equals(name) ) {
                    found = true;
                }
            }
            return found;
        }
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

        /**
         * @return the fileIndex
         */
        @Override
        public int getFileIndex () {
            return this.fileIndex;
        }
    
    
        /**
         * @return the filename
         */
        public String getFilename () {
            return this.filename;
        }
    
    
        @Override
        public int getAttributes () {
            return this.extFileAttributes;
        }
    
    
        @Override
        public long createTime () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.6K bytes
    - Viewed (0)
Back to top