Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for Schick (0.16 sec)

  1. src/test/java/org/codelibs/fess/validation/UriTypeValidatorTest.java

            assertTrue(UriTypeValidator.check(protocols, values));
    
            protocols = new String[] { "http:" };
            values = "http://www.foo.com/ \r\nhttp://www.bar.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
    
            protocols = new String[] { "http:" };
            values = "http://www.foo.com/\nhttp://www.bar.com/\n http://www.baz.com/";
            assertTrue(UriTypeValidator.check(protocols, values));
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ru.properties

    labels.search_result_sort_last_modified_asc=Дата изменения (по возрастанию)
    labels.search_result_sort_last_modified_desc=Дата изменения (по убыванию)
    labels.search_result_sort_click_count_asc=Переходы (по возрастанию)
    labels.search_result_sort_click_count_desc=Переходы (по убыванию)
    labels.search_result_sort_favorite_count_asc=Избранные (ascending)
    labels.search_result_sort_favorite_count_desc=Избранные (по убыванию)
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

        @Override
        public boolean isValid(final String value, final ConstraintValidatorContext context) {
            if (StringUtil.isNotBlank(value)) {
                return check(protocols, value);
            }
            return true;
        }
    
        protected static boolean check(final String[] protocols, final String value) {
            final String[] paths = value.split("[\r\n]");
            for (final String path : paths) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/maintenance/admin_maintenance.jsp

                                            <div class="form-check">
                                                <la:checkbox styleId="replaceAliases" styleClass="form-check-input" property="replaceAliases"/>
                                                <label for="replaceAliases" class="form-check-label">
                                                    <la:message key="labels.enabled"/>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 11.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/SearchListTests.java

            return searchBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
            //        updateMap.put("click_count", 100);
            return updateMap;
        }
    
        @Override
        protected void testUpdate() {
    
            // Test: update settings api
            final Map<String, Object> updateMap = getUpdateMap();
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/searchResults.jsp

    							arg0="${fe:formatFileSize(doc.content_length)}" />
    					</c:if>
    					<c:if test="${searchLogSupport && doc.click_count!=null && doc.click_count>0}">
    						<div class="d-sm-none"></div>
    						<span class="d-none d-sm-inline">&nbsp;</span>
    						<la:message key="labels.search_click_views"
    							arg0="${f:h(doc.click_count)}" />
    					</c:if>
    					<c:if test="${doc.has_cache=='true'}">
    						<div class="d-sm-none"></div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    							arg0="${fe:formatFileSize(doc.content_length)}" />
    					</c:if>
    					<c:if test="${searchLogSupport && doc.click_count!=null && doc.click_count>0}">
    						<div class="d-sm-none"></div>
    						<span class="d-none d-sm-inline">&nbsp;</span>
    						<la:message key="labels.search_click_views"
    							arg0="${f:h(doc.click_count)}" />
    					</c:if>
    					<c:if test="${doc.has_cache=='true'}">
    						<div class="d-sm-none"></div>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Click (ascending) */
        public static final String LABELS_search_result_sort_click_count_asc = "{labels.search_result_sort_click_count_asc}";
    
        /** The key of the message: Click (descending) */
        public static final String LABELS_search_result_sort_click_count_desc = "{labels.search_result_sort_click_count_desc}";
    
        /** The key of the message: Favorite (ascending) */
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/error/notFound.jsp

    <body class="error">
    	<jsp:include page="../header.jsp" />
    	<main class="container">
    		<div class="text-center">
    			<h2>
    				<la:message key="labels.page_not_found_title" />
    			</h2>
    			<div>
    				<la:message key="labels.check_url" />
    				<br /> ${f:h(url)}
    			</div>
    		</div>
    	</main>
    	<jsp:include page="../footer.jsp" />
    	<input type="hidden" id="contextPath" value="<%=request.getContextPath()%>" />
    	<script type="text/javascript"
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_config.properties

    index.codec=default
    index.number_of_shards=5
    index.auto_expand_replicas=0-1
    index.id.digest.algorithm=SHA-512
    index.user.initial_password=admin
    
    # field names
    index.field.favorite_count=favorite_count
    index.field.click_count=click_count
    index.field.config_id=config_id
    index.field.expires=expires
    index.field.url=url
    index.field.doc_id=doc_id
    index.field.id=_id
    index.field.version=_version
    index.field.seq_no=_seq_no
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
Back to top