Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for thumbnail (0.23 sec)

  1. src/main/assemblies/files/generate-thumbnail

      check_command convert
      check_command pdftoppm
      check_command unoconv
      tmp_pdf_file=/tmp/thumbnail.$$.pdf
      unoconv -e PageRange=1-1 -o ${tmp_pdf_file} -f pdf "${target_file}"
      if [[ ! -f ${tmp_pdf_file} ]] ; then
        echo "unoconv does not work."
        exit 1
      fi
      tmp_png_prefix=/tmp/thumbnail.png.$$
      pdftoppm -png -singlefile ${tmp_pdf_file} ${tmp_png_prefix}
      tmp_png_file="${tmp_png_prefix}.png"
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 12 13:13:28 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.thumbnail_queue/thumbnail_queue.json

    {
        "properties": {
          "thumbnail_id": {
            "type": "keyword"
          },
          "path": {
            "type": "keyword"
          },
          "generator": {
            "type": "keyword"
          },
          "target": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
          "createdBy": {
            "type": "keyword"
          }
        }
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 359 bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_thumbnail_queue.json

    {
      "fess_config.thumbnail_queue" : {
        "aliases" : { },
        "mappings" : {
          "thumbnail_queue" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "generator" : {
                "type" : "keyword"
              },
              "path" : {
                "type" : "keyword"
              },
              "target" : {
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 903 bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess_config.thumbnail_queue.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 173 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsThumbnailQueue.java

            this.target = value;
        }
    
        public String getThumbnailId() {
            checkSpecifiedProperty("thumbnailId");
            return convertEmptyToNull(thumbnailId);
        }
    
        public void setThumbnailId(String value) {
            registerModifiedProperty("thumbnailId");
            this.thumbnailId = value;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsThumbnailQueueCA.java

        public void setThumbnailId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setThumbnailId_Terms("thumbnail_id", opLambda, null);
        }
    
        public void setThumbnailId_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsThumbnailQueueCA> aggsLambda) {
            setThumbnailId_Terms("thumbnail_id", opLambda, aggsLambda);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsThumbnailQueueBhv.java

        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.thumbnail_queue";
        }
    
        @Override
        public String asEsIndexType() {
            return "thumbnail_queue";
        }
    
        @Override
        public String asEsSearchType() {
            return "thumbnail_queue";
        }
    
        @Override
        public ThumbnailQueueDbm asDBMeta() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"thumbnail_generate"}}
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/thumbnail/impl/EmptyGenerator.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.thumbnail.impl;
    
    import java.io.File;
    
    public class EmptyGenerator extends BaseThumbnailGenerator {
    
        @Override
        public boolean generate(final String thumbnailId, final File outputFile) {
            return false;
        }
    
        @Override
        public void destroy() {
            // nothing
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 939 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                final int totalCount = process(options);
                if (totalCount != 0) {
                    logger.info("Created {} thumbnail files.", totalCount);
                } else {
                    logger.info("No new thumbnails found.");
                }
                exitCode = 0;
            } catch (final ContainerNotAvailableException e) {
                if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
Back to top