Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 77 for 20 (0.12 sec)

  1. src/main/resources/fess_config.properties

    app.extension.names=
    
    app.audit.log.format=
    
    # JVM options
    jvm.crawler.options=\
    -Djava.awt.headless=true\n\
    -Dfile.encoding=UTF-8\n\
    -Djna.nosys=true\n\
    -Djdk.io.permissionsUseCanonicalPath=true\n\
    -Dhttp.maxConnections=20\n\
    -Djava.util.logging.manager=org.apache.logging.log4j.jul.LogManager\n\
    -server\n\
    -Xms128m\n\
    -Xmx512m\n\
    -XX:MaxMetaspaceSize=128m\n\
    -XX:CompressedClassSpaceSize=32m\n\
    -XX:-UseGCOverheadLimit\n\
    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/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class CrawlingInfoPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class FileAuthPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class WebConfigPager implements Serializable {
    
        private static final long serialVersionUID = 1L;
    
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        private int allRecordCount;
    
        private int allPageCount;
    
        private boolean existPrePage;
    
        private boolean existNextPage;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

                final char c = configPath.charAt(i);
                if (c == '\\') {
                    buf.append('/');
                } else if (c == ' ') {
                    buf.append("%20");
                } else if (CharUtil.isUrlChar(c)) {
                    buf.append(c);
                } else {
                    try {
                        buf.append(URLEncoder.encode(String.valueOf(c), Constants.UTF_8));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/CrudTestBase.java

    import io.restassured.RestAssured;
    import io.restassured.path.json.JsonPath;
    import io.restassured.response.Response;
    
    public abstract class CrudTestBase extends ITBase {
    
        protected static final int NUM = 20;
        protected static final int SEARCH_ALL_NUM = 1000;
    
        private static final Logger logger = LogManager.getLogger(CrudTestBase.class);
    
        // ================
        // Abstract Methods
        // ================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig.jsp

                                                <tr>
                                                    <th><la:message key="labels.name"/></th>
                                                    <th class="text-center" style="width: 20%"><la:message
                                                            key="labels.available"/></th>
                                                </tr>
                                                </thead>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Tue Mar 31 05:47:05 GMT 2020
    - 8.8K bytes
    - Viewed (0)
  8. src/packaging/deb/init.d/fess

    	;;		
      stop)
    	log_daemon_msg "Stopping $DESC"
    
    	if [ -f "$PID_FILE" ]; then 
    		start-stop-daemon --stop --pidfile "$PID_FILE" \
    			--user "$FESS_USER" \
    			--quiet \
    			--retry forever/TERM/20 > /dev/null
    		if [ $? -eq 1 ]; then
    			log_progress_msg "$DESC is not running but pid file exists, cleaning up"
    		elif [ $? -eq 3 ]; then
    			PID="`cat $PID_FILE`"
    			log_failure_msg "Failed to stop $DESC (pid $PID)"
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

                public Integer getUserCodeMinLengthAsInteger() {
                    return 10;
                }
    
                @Override
                public Integer getUserCodeMaxLengthAsInteger() {
                    return 20;
                }
    
                @Override
                public String getUserCodePattern() {
                    return "[a-zA-Z0-9_]+";
                }
            };
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

     */
    public class EditForm {
    
        @ValidateTypeFailure
        public int crudMode;
    
        @Required
        @Size(max = 1000)
        public String id;
    
        @Required
        @Size(max = 20)
        public String sessionId;
    
        @Size(max = 20)
        public String name;
    
        public String expiredTime;
    
        @ValidateTypeFailure
        public Long createdTime;
    
        public void initialize() {
    
            id = null;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
Back to top