Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for HQ (0.19 sec)

  1. src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java

                saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));
                return redirect(ErrorAction.class);
            }
    
            final String content = viewHelper.createCacheContent(doc, form.hq);
            if (content == null) {
                saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId));
                return redirect(ErrorAction.class);
            }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

    import javax.validation.constraints.Size;
    
    import org.lastaflute.web.validation.Required;
    
    public class CacheForm {
    
        @Required
        @Size(max = 100)
        public String docId;
    
        public String[] hq;
    
        // for error page
    
        public String q;
    
        public String num;
    
        public String sort;
    
        public String lang;
    
        public Map<String, String[]> fields = new HashMap<>();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            if (highlightQueries != null) {
                final StringBuilder buf = new StringBuilder(100);
                highlightQueries.stream().forEach(q -> {
                    buf.append("&hq=").append(LaFunctions.u(q));
                });
                data.setAppendHighlightParams(buf.toString());
            }
    
            queryResponseList.setExecTime(systemHelper.getCurrentTimeAsLong() - startTime);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: End Time */
        public static final String LABELS_END_TIME = "{labels.endTime}";
    
        /** The key of the message: hq */
        public static final String LABELS_HQ = "{labels.hq}";
    
        /** The key of the message: Source */
        public static final String LABELS_INPUTS = "{labels.inputs}";
    
        /** The key of the message: Logging */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
Back to top