Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for as_timestamp (0.05 seconds)

  1. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

        /** The parameter for occurrence. */
        public static final String AS_OCCURRENCE = "occt";
    
        /** The parameter for timestamp. */
        public static final String AS_TIMESTAMP = "timestamp";
    
        /**
         * Returns the query.
         *
         * @return The query.
         */
        public abstract String getQuery();
    
        /**
         * Returns the fields.
         *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 8K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/advance.jsp

    						</la:select>
    					</div>
    				</div>
    			</c:if>
    			<div class="mb-3 row">
    				<label for="as_timestamp" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_timestamp"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<select id="as_timestamp" name="as.timestamp" class="form-control">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  3. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						</la:select>
    					</div>
    				</div>
    			</c:if>
    			<div class="mb-3 row">
    				<label for="as_timestamp" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_timestamp"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<select id="as_timestamp" name="as.timestamp" class="form-control">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

                            .forEach(q -> queryBuf.append(" site:").append(q.trim())));
            stream(conditions.get(SearchRequestParams.AS_TIMESTAMP))
                    .of(stream -> stream.filter(q -> StringUtil.isNotBlank(q) && q.length() <= maxQueryLength)
                            .forEach(q -> queryBuf.append(" timestamp:").append(q.trim())));
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        @Test
        public void test_hasConditionQuery_withTimestamp() {
            // Test with timestamp
            testParams.conditions.put(SearchRequestParams.AS_TIMESTAMP, new String[] { "2024-01-01" });
            assertTrue(searchRequestParams.hasConditionQuery());
        }
    
        @Test
        public void test_hasConditionQuery_withSiteSearch() {
            // Test with site search
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 26.5K bytes
    - Click Count (0)
Back to Top