Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for Liles (0.15 sec)

  1. src/main/resources/fess_config.properties

    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
    supported.languages=ar,bg,bn,ca,ckb_IQ,cs,da,de,el,en_IE,en,es,et,eu,fa,fi,fr,gl,gu,he,hi,hr,hu,hy,id,it,ja,ko,lt,lv,mk,ml,nl,no,pa,pl,pt_BR,pt,ro,ru,si,sq,sv,ta,te,th,tl,tr,uk,ur,vi,zh_CN,zh_TW,zh
    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)
  2. src/main/resources/fess_label_ru.properties

    labels.design_title_file_upload=File Upload
    labels.design_title_file=File Manager
    labels.design_file=Upload File
    labels.design_file_name=File Name (Optional)
    labels.design_button_upload=Upload
    labels.design_file_title_edit=JSP Files
    labels.design_edit_button=Edit
    labels.design_download_button=Download
    labels.design_delete_button=Delete
    labels.design_use_default_button=Use Default
    labels.design_title_edit_content=Edit JSP File
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Crawling Info */
        public static final String LABELS_menu_crawling_info = "{labels.menu_crawling_info}";
    
        /** The key of the message: Log Files */
        public static final String LABELS_menu_log = "{labels.menu_log}";
    
        /** The key of the message: Job Log */
        public static final String LABELS_menu_jobLog = "{labels.menu_jobLog}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    ,validatorFunction:function(b,c,d,e){var f=c.valAttr("length"),g=c.attr("type");if(void 0===f)return alert('Please add attribute "data-validation-length" to '+c[0].nodeName+" named "+c.attr("name")),!0;var h,i="file"===g&&void 0!==c.get(0).files?c.get(0).files.length:b.length,j=a.formUtils.numericRangeCheck(i,f);switch(j[0]){case"out":this.errorMessage=e.lengthBadStart+f+e.lengthBadEnd,h=!1;break;case"min":this.errorMessage=e.lengthTooShortStart+j[1]+e.lengthBadEnd,h=!1;break;case"max":this.erro...
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 32.8K bytes
    - Viewed (0)
  5. src/packaging/common/systemd/fess.service

    StandardError=journal
    
    # When a JVM receives a SIGTERM signal it exits with code 143
    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    LimitNOFILE=${packaging.os.max.open.files}
    
    # Specifies the maximum number of bytes of memory that may be locked into RAM
    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/replaceSchemaMap.dfprop

    #
    map:{
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o repsEnvType: (NotRequired - Default inherits or 'ut')
        #  The environment type of ReplaceSchema.
        #   e.g. if ut, data files in './playsql/data/ut/...' are loaded
        #  If DBFlute environment type is specified, inherits it as default.
        #
        #; repsEnvType = ut
        # - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

                        try {
                            final Path path = Paths.get(LaServletContextUtil.getServletContext().getRealPath(key));
                            if (Files.isRegularFile(path)) {
                                return Files.getLastModifiedTime(path).toMillis();
                            }
                        } catch (final Exception e) {
                            logger.debug("Failed to access {}", key, e);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/LogTests.java

    @Tag("it")
    public class LogTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "logTest_";
        private static final String API_PATH = "/api/admin/log";
        private static final String LIST_ENDPOINT_SUFFIX = "files";
        private static final String ITEM_ENDPOINT_SUFFIX = "file";
    
        private static final String KEY_PROPERTY = "";
    
        @Override
        protected String getNamePrefix() {
            return NAME_PREFIX;
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    if (response.getHttpStatusCode() == 200) {
                        logger.info("Flushed config files.");
                    } else {
                        logger.warn("Failed to flush config files.");
                    }
                } catch (final Exception e) {
                    logger.warn("Failed to flush config files.", e);
                }
                break;
            }
    
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  10. src/main/assemblies/common-bin.xml

    		</fileSet>
    		<fileSet>
    			<filtered>false</filtered>
    			<directory>src/main/assemblies/files</directory>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<includes>
    				<include>*.exe</include>
    			</includes>
    		</fileSet>
    		<fileSet>
    			<filtered>true</filtered>
    			<directory>src/main/assemblies/files</directory>
    			<outputDirectory>fess-${project.version}/bin</outputDirectory>
    			<fileMode>0755</fileMode>
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Mar 17 02:29:43 GMT 2022
    - 3.7K bytes
    - Viewed (0)
Back to top