Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for filetype (0.19 sec)

  1. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

                logger.debug("loaded filetype: {}", mimetypeMap);
            }
        }
    
        public void add(final String mimetype, final String filetype) {
            mimetypeMap.put(mimetype, filetype);
        }
    
        public String get(final String mimetype) {
            final String filetype = mimetypeMap.get(mimetype);
            if (StringUtil.isBlank(filetype)) {
                return defaultValue;
            }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

                final String[] fileTypes = ComponentUtil.getFileTypeHelper().getTypes();
                for (final String fileType : fileTypes) {
                    final String value = filetypeField + ":" + fileType;
                    if (!values.contains(value)) {
                        final String key = "labels.facet_filetype_" + fileType;
                        if (resources.containsKey(key)) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

         */
        @Override
        public int getAttributes () {
            return getFileAttributes();
        }
    
    
        /**
         * @return the fileType
         */
        public final int getFileType () {
            return this.fileType;
        }
    
    
        /**
         * @return the deviceState
         */
        public final int getDeviceState () {
            return this.deviceState;
        }
    
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndXResponse.java

         */
        public SmbComNTCreateAndXResponse ( Configuration config ) {
            super(config);
        }
    
    
        /**
         * @return the fileType
         */
        public final int getFileType () {
            return this.fileType;
        }
    
    
        /**
         * @return the isExtended
         */
        public final boolean isExtended () {
            return this.isExtended;
        }
    
    
        /**
         * @param isExtended
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndXResponse.java

                ",extFileAttributes=0x" + Hexdump.toHexString( extFileAttributes, 4 ) +
                ",allocationSize=" + allocationSize +
                ",endOfFile=" + endOfFile +
                ",fileType=" + fileType +
                ",deviceState=" + deviceState +
                ",directory=" + directory + "]" );
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java

                ",fileAttributes=" + fileAttributes +
                ",lastWriteTime=" + lastWriteTime +
                ",dataSize=" + dataSize +
                ",grantedAccess=" + grantedAccess +
                ",fileType=" + fileType +
                ",deviceState=" + deviceState +
                ",action=" + action +
                ",serverFid=" + serverFid + "]" );
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        public static final String AS_OQ = "oq";
    
        public static final String AS_EPQ = "epq";
    
        public static final String AS_Q = "q";
    
        public static final String AS_FILETYPE = "filetype";
    
        public static final String AS_SITESEARCH = "sitesearch";
    
        public static final String AS_OCCURRENCE = "occt";
    
        public static final String AS_TIMESTAMP = "timestamp";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                        queryBuf.append(' ').append(nq);
                    }));
            stream(conditions.get(SearchRequestParams.AS_FILETYPE))
                    .of(stream -> stream.filter(q -> StringUtil.isNotBlank(q) && q.length() <= maxQueryLength)
                            .forEach(q -> queryBuf.append(" filetype:\"").append(q.trim()).append('"')));
            stream(conditions.get(SearchRequestParams.AS_SITESEARCH))
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  9. src/main/assemblies/files/generate-thumbnail

      check_command convert
      target_file=$(echo "$url" | sed -e "s#^file:/*#/#g")
      convert -thumbnail ${image_size} "${target_file}" "${output_file}"
    elif [[ x"${cmd_type}" = "x" ]] ; then
      echo "No filetype."
      exit 1
    else
      echo "Unsupported type: ${cmd_type}"
      exit 1
    fi
    
    if [[ ! -f ${output_file} ]] ; then
      echo "Thumbnail is not created."
      exit 1
    Shell Script
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jun 12 13:13:28 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  10. ci/official/containers/linux_arm64/devel.usertools/code_check_changed_files.bats

    # vim: filetype=bash
    #
    # Copyright 2022 The TensorFlow Authors. All Rights Reserved.
    #
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 3.6K bytes
    - Viewed (0)
Back to top