Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for extensions (0.2 sec)

  1. pom.xml

    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    						<!-- Add extensions -->
    						<data>
    							<type>directory</type>
    							<src>${project.basedir}/src/main/assemblies/extension</src>
    							<mapper>
    								<type>perm</type>
    								<prefix>${packaging.fess.extension.dir}</prefix>
    								<user>${packaging.fess.user}</user>
    								<group>${packaging.fess.group}</group>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/ResourceUtil.java

         *            パス。{@literal null}であってはいけません
         * @param extension
         *            拡張子
         * @return リソースパス
         */
        public static String getResourcePath(final String path, final String extension) {
            assertArgumentNotNull("path", path);
    
            if (extension == null) {
                return path;
            }
            final String ext = "." + extension;
            if (path.endsWith(ext)) {
                return path;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    processors=0
    java.command.path=java
    python.command.path=python
    path.encoding=UTF-8
    use.own.tmp.dir=true
    max.log.output.length=4000
    adaptive.load.control=50
    supported.uploaded.js.extentions=js
    supported.uploaded.css.extentions=css
    supported.uploaded.media.extentions=jpg,jpeg,gif,png,swf
    supported.uploaded.files=license.properties
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/core/io/ClassTraversalUtil.java

     */
    public abstract class ClassTraversalUtil {
    
        /** クラスファイルの拡張子 */
        protected static final String CLASS_SUFFIX = ".class";
    
        /** WARファイルの拡張子 */
        protected static final String WAR_FILE_EXTENSION = ".war";
    
        /** WARファイル内のクラスファイルのエントリプレフィックス */
        protected static final String WEB_INF_CLASSES_PATH = "WEB-INF/classes/";
    
        /**
         * ルートディレクトリ配下を処理します。
         *
         * @param rootDir
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_fr.properties

    labels.searchlog_requestedtime	=	Temps
    labels.searchlog_accesstype	=	Type d'accès
    labels.maintenance_title_configuration	=	Entretien
    labels.number_of_shards_for_doc	=	Le nombre de fragments
    labels.auto_expand_replicas_for_doc	=	Extension automatique des répliques
    labels.clear_crawler_index	=	Indices de chenilles
    labels.clear_crawler_index_button	=	Effacer les indices de chenilles
    labels.diagnostic_logs	=	Diagnostique
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                                out.write(in);
                            }
                        }
                    });
                }
                if (id.endsWith(NDJSON_EXTENTION)) {
                    final String name = id.substring(0, id.length() - NDJSON_EXTENTION.length());
                    if ("search_log".equals(name)) {
                        return writeNdjsonResponse(id, getSearchLogNdjsonWriteCall());
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

    ery\":\"QUERY1\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":0.5}}},{\"fuzzy\":{\"title\":{\"value\":\"QUERY1\",\"fuzziness\":\"AUTO\",\"prefix_length\":0,\"max_expansions\":10,\"transpositions\":true,\"boost\":0.01}}},{\"fuzzy\":{\"content\":{\"value\":\"QUERY1\",\"fuzziness\":\"AUTO\",\"prefix_length\":0,\"max_expansions\":10,\"transpositions\":true,\"boost\":0.005}}}],\"adjust_pure_negative\":true,\"boost\":1.0}},\"functions\":[{\"filter\":{\"match_all\":{\"boost\":1.0}},\"field_value_...
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top