Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for thumbnail (2.01 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsThumbnailQueueCQ.java

            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public BsThumbnailQueueCQ addOrderBy_ThumbnailId_Asc() {
            regOBA("thumbnail_id");
            return this;
        }
    
        public BsThumbnailQueueCQ addOrderBy_ThumbnailId_Desc() {
            regOBD("thumbnail_id");
            return this;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 51.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setThumbnailEnabled(final boolean value) {
            setSystemPropertyAsBoolean(Constants.THUMBNAIL_ENALBED_PROPERTY, value);
        }
    
        default boolean isThumbnailEnabled() {
            return getSystemPropertyAsBoolean(Constants.THUMBNAIL_ENALBED_PROPERTY, false);
        }
    
        default void setIncrementalCrawling(final boolean value) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    ```
    
    ### Step 3: Test with Thumbnailer
    
    We used [Thumbnailer](https://github.com/minio/thumbnailer) to listen for MinIO notifications when a new JPEG file is uploaded (HTTP PUT). Triggered by a notification, Thumbnailer uploads a thumbnail of new image to MinIO server. To start with, download and install Thumbnailer.
    
    ```
    git clone https://github.com/minio/thumbnailer/
    npm install
    ```
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
Back to top