Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 250 for sort2 (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/SearchForm.java

        /**
         * The main search query string.
         */
        @Size(max = 1000)
        public String q;
    
        /**
         * The sort parameter for search results.
         */
        @Size(max = 1000)
        public String sort;
    
        /**
         * The number of search results to return per page.
         */
        @ValidateTypeFailure
        public Integer num;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    # Inner hits name for collapse queries.
    query.collapse.inner.hits.name=similar_docs
    # Inner hits size for collapse queries.
    query.collapse.inner.hits.size=0
    # Sorts for inner hits in collapse queries.
    query.collapse.inner.hits.sorts=
    # Default languages for queries.
    query.default.languages=
    # Default preference for JSON queries.
    query.json.default.preference=_query
    # Default preference for GSA queries.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java

        public String q;
    
        /** URL parameter associated with the error */
        public String url;
    
        /** Number of results parameter */
        public String num;
    
        /** Sort order parameter for search results */
        public String sort;
    
        /** Language parameter for search interface */
        public String lang;
    
        /**
         * Default constructor for ErrorForm.
         */
        public ErrorForm() {
            super();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. samples/simple-client/src/main/java/okhttp3/sample/OkHttpContributors.java

          // Deserialize HTTP response to concrete type.
          ResponseBody body = response.body();
          List<Contributor> contributors = CONTRIBUTORS_JSON_ADAPTER.fromJson(body.source());
    
          // Sort list by the most contributions.
          Collections.sort(contributors, (c1, c2) -> c2.contributions - c1.contributions);
    
          // Output list of contributors.
          for (Contributor contributor : contributors) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/main/webapp/css/font-awesome.min.css

    ontent:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-down-alt:before{content:"\f881"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-alpha-up-alt:before{content:"\f882"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-down-alt:before{content:"\f884"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-amount-up-alt:before{content:"\f885"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeri...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (2)
  6. src/main/assemblies/extension/kibana/fess_log.ndjson

    ":[],\"indexRefName\":\"kibanaSavedObjectMeta.searchSourceJSON.index\"}"},"title":"search-term-rank","uiStateJSON":"{\"vis\":{\"params\":{\"sort\":{\"columnIndex\":null,\"direction\":null}}}}","version":1,"visState":"{\"title\":\"search-term-rank\",\"type\":\"table\",\"params\":{\"perPage\":10,\"showPartialRows\":false,\"showMetricsAtAllLevels\":false,\"sort\":{\"columnIndex\":null,\"direction\":null},\"showTotal\":false,\"totalFunc\":\"sum\",\"dimensions\":{\"metrics\":[{\"accessor\":0,\"format...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                }
            }
            request.setAttribute(Constants.LABEL_VALUE_MAP, labelMap);
    
            // sort
            if (StringUtil.isBlank(form.sort)) {
                final String[] defaultSortValues = fessConfig.getDefaultSortValues(getUserBean());
                if (defaultSortValues.length == 1) {
                    form.sort = defaultSortValues[0];
                } else if (defaultSortValues.length >= 2) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         * Specifies how many results to display if redirection fails.
         */
        public String num;
    
        /**
         * Sort parameter for error page fallback.
         * Defines the sorting order if redirection fails.
         */
        public String sort;
    
        /**
         * Language parameter for error page fallback.
         * Specifies the language preference if redirection fails.
         */
        public String lang;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

        return Arrays.asList(method.getExceptionTypes()).contains(InterruptedException.class);
      }
    
      /** Sorts the given methods primarily by name and secondarily by number of parameters. */
      private static void sortMethods(Method[] methods) {
        Arrays.sort(
            methods,
            new Comparator<Method>() {
              @Override
              public int compare(Method m1, Method m2) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java

            request.setParameterValues("facet.query", new String[] { "query1", "query2" });
            request.setParameter("facet.size", "100");
            request.setParameter("facet.minDocCount", "5");
            request.setParameter("facet.sort", "count");
            request.setParameter("facet.missing", "other");
    
            FacetInfo facetInfo = searchRequestParams.createFacetInfo(request);
            assertNotNull(facetInfo);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.2K bytes
    - Viewed (0)
Back to top