Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for faceste (0.19 sec)

  1. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            assertEquals("labels.facet_timestamp_title", view1.getTitle());
            assertEquals(4, view1.getQueryMap().size());
            FacetQueryView view2 = list.get(1);
            assertEquals("labels.facet_contentLength_title", view2.getTitle());
            assertEquals(5, view2.getQueryMap().size());
            FacetQueryView view3 = list.get(2);
            assertEquals("labels.facet_filetype_title", view3.getTitle());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/bytes/bytes_test.go

    	{abcd, "", -1, []string{"a", "b", "c", "d"}},
    	{commas, ",", -1, []string{"1", "2", "3", "4"}},
    	{dots, "...", -1, []string{"1", ".2", ".3", ".4"}},
    	{faces, "☹", -1, []string{"☺☻", ""}},
    	{faces, "~", -1, []string{faces}},
    	{faces, "", -1, []string{"☺", "☻", "☹"}},
    	{"1 2 3 4", " ", 3, []string{"1", "2", "3 4"}},
    	{"1 2", " ", 3, []string{"1", "2"}},
    	{"123", "", 2, []string{"1", "23"}},
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Jan 24 16:07:25 GMT 2024
    - 56.2K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/fe.tld

        <example>
          ${fe:pagingQuery("ex_q=timestamp:")}
        </example>
      </function>
    
      <function>
        <description>
          Returns query parameters for Facet.
        </description>
        <name>facetQuery</name>
        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String facetQuery()</function-signature>
        <example>
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu May 28 07:49:35 GMT 2020
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                                }
                            }
                        }
                    }
    
                    builder.addDocument(docMap);
                }
    
                // facet
                final Aggregations aggregations = searchResponse.getAggregations();
                if (aggregations != null) {
                    builder.facetResponse(new FacetResponse(aggregations));
                }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    					<c:if test="${facetFound == 'F'}">
    						<li class="list-group-item"><la:message key="labels.facet_is_not_found" /></li>
    					</c:if>
    				</ul>
    			</c:forEach>
    			<c:if test="${!empty ex_q}">
    				<div class="float-right">
    					<la:link href="/search?q=${f:u(q)}"
    						styleClass="btn btn-link btn-sm">
    						<la:message key="labels.facet_label_reset" />
    					</la:link>
    				</div>
    			</c:if>
    		</c:if>
    	</aside>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (1)
  6. src/main/webapp/WEB-INF/view/searchResults.jsp

    					<c:if test="${facetFound == 'F'}">
    						<li class="list-group-item"><la:message key="labels.facet_is_not_found" /></li>
    					</c:if>
    				</ul>
    			</c:forEach>
    			<c:if test="${!empty ex_q}">
    				<div class="float-right">
    					<la:link href="/search?q=${f:u(q)}"
    						styleClass="btn btn-link btn-sm">
    						<la:message key="labels.facet_label_reset" />
    					</la:link>
    				</div>
    			</c:if>
    		</c:if>
    	</aside>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jun 09 04:29:42 GMT 2022
    - 9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/FacetInfo.java

                newQuery[query.length] = s;
                query = newQuery;
            }
            if (logger.isDebugEnabled()) {
                logger.debug("loaded facet query: {}", s);
            }
        }
    
        @Override
        public String toString() {
            return "FacetInfo [field=" + Arrays.toString(field) + ", query=" + Arrays.toString(query) + ", size=" + size + ", minDocCount="
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                    }
                }
                buf.append(']');
                if (facetResponse != null && facetResponse.hasFacetResponse()) {
                    // facet field
                    buf.append(',');
                    buf.append("\"facet_field\":[");
                    if (facetResponse.getFieldList() != null) {
                        boolean first1 = true;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_fr.properties

    labels.facet_filetype_bz	=	Bz Archive
    labels.facet_filetype_bz2	=	Bz2 Archive
    labels.facet_filetype_tar	=	TAR Archive
    labels.facet_filetype_rar	=	RAR Archive
    labels.facet_filetype_3gp	=	3gp Video
    labels.facet_filetype_3g2	=	3g2 Video
    labels.facet_filetype_avi	=	AVI Video
    labels.facet_filetype_flv	=	FLV Video
    labels.facet_filetype_mpeg	=	MPEG Video
    labels.facet_filetype_mp4	=	MP4 Video
    labels.facet_filetype_ogv	=	OGV Video
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she comes, to--'  At this moment Five, who had been anxiously
    looking across the garden, called out `The Queen!  The Queen!'
    and the three gardeners instantly threw themselves flat upon
    their faces.  There was a sound of many footsteps, and Alice
    looked round, eager to see the Queen.
    
      First came ten soldiers carrying clubs; these were all shaped
    like the three gardeners, oblong and flat, with their hands and
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
Back to top