Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for uploader (4.59 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Uploaded Stemmer Override file. */
        public static final String SUCCESS_upload_stemmeroverride_file = "{success.upload_stemmeroverride_file}";
    
        /** The key of the message: Uploaded Kuromoji file. */
        public static final String SUCCESS_upload_kuromoji_file = "{success.upload_kuromoji_file}";
    
        /** The key of the message: Uploaded Additional Word file. */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

         * @see java.lang.ClassLoader#getResources(String)
         */
        public static Iterator<URL> getResources(final ClassLoader loader, final String name) {
            assertArgumentNotNull("loader", loader);
            assertArgumentNotEmpty("name", name);
    
            try {
                final Enumeration<URL> e = loader.getResources(name);
                return new EnumerationIterator<>(e);
            } catch (final IOException e) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

            final DiskFileItemFactory fileItemFactory = createDiskFileItemFactory();
            final ServletFileUpload upload = newServletFileUpload(fileItemFactory);
            upload.setHeaderEncoding(request.getCharacterEncoding());
            upload.setSizeMax(getSizeMax());
            return upload;
        }
    
        protected ServletFileUpload newServletFileUpload(final DiskFileItemFactory fileItemFactory) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

            return asJson(new ApiResult.ApiUpdateResponse().id(String.valueOf(id)).created(false).status(ApiResult.Status.OK).result());
        }
    
        // POST /api/admin/dict/kuromoji/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$upload(final String dictId, final UploadForm form) {
            form.dictId = dictId;
            validateApi(form, messages -> {});
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java

            return asJson(new ApiResult.ApiUpdateResponse().id(String.valueOf(id)).created(false).status(ApiResult.Status.OK).result());
        }
    
        // POST /api/admin/dict/mapping/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$upload(final String dictId, final UploadForm form) {
            form.dictId = dictId;
            validateApi(form, messages -> {});
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

            }
            return asJson(new ApiResult.ApiUpdateResponse().id(id).created(false).status(ApiResult.Status.OK).result());
        }
    
        // POST /api/admin/elevateword/upload
        @Execute
        public JsonResponse<ApiResult> post$upload(final UploadForm body) {
            validateApi(body, messages -> {});
            CommonPoolUtil.execute(() -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

                        return null;
                    });
        }
    
        // -----------------------------------------------------
        //                                                Upload
        //                                               -------
        @Execute
        @Secured({ ROLE })
        public HtmlResponse uploadpage(final String dictId) {
            saveToken();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String SUPPORTED_UPLOADED_JS_EXTENTIONS = "supported.uploaded.js.extentions";
    
        /** The key of the configuration. e.g. css */
        String SUPPORTED_UPLOADED_CSS_EXTENTIONS = "supported.uploaded.css.extentions";
    
        /** The key of the configuration. e.g. jpg,jpeg,gif,png,swf */
        String SUPPORTED_UPLOADED_MEDIA_EXTENTIONS = "supported.uploaded.media.extentions";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (5)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param  id identifier of the remote repository to create
         * @param  url location of the remote repository
         * @return remote repository that can be used to download or upload artifacts
         *
         * @see org.apache.maven.api.services.RepositoryFactory#createRemote(String, String)
         */
        @Nonnull
        RemoteRepository createRemoteRepository(@Nonnull String id, @Nonnull String url);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final FileTemplateLoader loader = new FileTemplateLoader(ResourceUtil.getViewTemplatePath().toFile());
            final Handlebars handlebars = new Handlebars(loader);
    
            Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
                locale = Locale.ENGLISH;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
Back to top