Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for sizden (0.04 sec)

  1. src/main/java/org/codelibs/fess/storage/StorageItem.java

        private final boolean directory;
        private final long size;
        private final ZonedDateTime lastModified;
        private final String encodedId;
    
        /**
         * Creates a new StorageItem instance.
         *
         * @param name the name of the item
         * @param path the path of the item
         * @param directory true if this item is a directory
         * @param size the size of the item in bytes
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 10)
        public String userFavorite;
    
        /**
         * Enable or disable JSON Web API.
         * When enabled, search results can be retrieved via JSON API.
         */
        @Size(max = 10)
        public String webApiJson;
    
        /**
         * Application-specific value for custom configurations.
         * This field can be used to store custom application settings.
         */
        @Size(max = 10000)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

            if (stemmerOverrideItemList == null) {
                reload(null);
            }
    
            if (offset >= stemmerOverrideItemList.size() || offset < 0) {
                return new PagingList<>(Collections.<StemmerOverrideItem> emptyList(), offset, size, stemmerOverrideItemList.size());
            }
    
            int toIndex = offset + size;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_de.properties

    labels.storage_type_s3=S3
    labels.storage_type_gcs=GCS
    labels.storage_region=Region
    labels.storage_project_id=Project ID
    labels.storage_credentials_path=Credentials Path
    labels.send_testmail=Test-E-Mail senden
    labels.backup_configuration=Sicherung
    labels.backup_name=Name
    labels.backup_bulk_file=Bulk-Datei
    labels.backup_button_upload=Hochladen
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 46.9K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

                return new PagingList<>(Collections.<CharMappingItem> emptyList(), offset, size, mappingItemList.size());
            }
    
            int toIndex = offset + size;
            if (toIndex > mappingItemList.size()) {
                toIndex = mappingItemList.size();
            }
    
            return new PagingList<>(mappingItemList.subList(offset, toIndex), offset, size, mappingItemList.size());
        }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 05:56:45 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/storage/StorageClient.java

         *
         * @param objectName the name/path for the object
         * @param inputStream the input stream of data to upload
         * @param size the size of the data in bytes
         * @param contentType the MIME type of the content
         */
        void uploadObject(String objectName, InputStream inputStream, long size, String contentType);
    
        /**
         * Downloads an object from storage.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. 1000 */
        String PAGE_USER_MAX_FETCH_SIZE = "page.user.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_ROLE_MAX_FETCH_SIZE = "page.role.max.fetch.size";
    
        /** The key of the configuration. e.g. 1000 */
        String PAGE_GROUP_MAX_FETCH_SIZE = "page.group.max.fetch.size";
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

            try {
                final PutObjectRequest request =
                        PutObjectRequest.builder().bucket(bucket).key(objectName).contentType(contentType).contentLength(size).build();
                s3Client.putObject(request, RequestBody.fromInputStream(inputStream, size));
            } catch (final Exception e) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                value="<la:message key="labels.crawl_button_update" />">
                                            <i class="fa fa-pencil-alt" aria-hidden="true"></i>
                                            <la:message key="labels.crawl_button_update"/>
                                        </button>
                                    </c:if>
                                </div>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 42.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.search_result_sort_filename_desc=by Filename (desc)
    labels.search_result_sort_created_asc=by Date (asc)
    labels.search_result_sort_created_desc=by Date (desc)
    labels.search_result_sort_content_length_asc=by Size (asc)
    labels.search_result_sort_content_length_desc=by Size (desc)
    labels.search_result_sort_last_modified_asc=by Last Modified (asc)
    labels.search_result_sort_last_modified_desc=by Last Modified (desc)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 44K bytes
    - Viewed (0)
Back to top