- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 179 for soat (0.04 sec)
-
android/guava-testlib/src/com/google/common/testing/GcFinalization.java
* return weakRef; * } * public void testFooLeak() { * GcFinalization.awaitClear(fooWeakRef()); * } * } * * <p>This class cannot currently be used to test soft references, since this class does not try to * create the memory pressure required to cause soft references to be cleared. * * <p>This class only provides testing utilities. It is not designed for direct use in production or * for benchmarking. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
* ({@code application/soap+xml}) is used to identify SOAP 1.2 message envelopes that have been * serialized with XML 1.0. * * <p>For SOAP 1.1 messages, see {@code XML_UTF_8} per <a * href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">W3C Note on Simple Object Access Protocol * (SOAP) 1.1</a> * * @since 20.0 */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FacetInfoTest.java
} // Test getBucketOrder with invalid sort value public void test_getBucketOrder_invalidSort() { facetInfo.sort = "invalid.desc"; BucketOrder order = facetInfo.getBucketOrder(); assertNotNull(order); assertEquals(BucketOrder.count(false), order); // default } // Test getBucketOrder with null sort public void test_getBucketOrder_nullSort() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermQueryCommand.java
return getQueryProcessor().execute(context, new PrefixQuery(new Term(field, text.substring(0, text.length() - 1))), boost); } /** * Converts a sort field query to add sort criteria to the context. * * @param fessConfig the Fess configuration * @param context the query context * @param termQuery the term query to convert
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetInfo.java
sort = fessConfig.getQueryFacetFieldsSort(); } if (StringUtil.isNotBlank(fessConfig.getQueryFacetFieldsMissing())) { missing = fessConfig.getQueryFacetFieldsMissing(); } } /** * Converts the sort string into a BucketOrder object for OpenSearch aggregations.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
*/ public String q; /** * The number of search results per page for error page display. */ public String num; /** * The sort criteria for search results for error page display. */ public String sort; /** * The language setting for error page display. */ public String lang; /** * Additional search fields for error page display.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/QueryContext.java
} /** * Adds sort builders to the query context. * @param sortBuilders Variable number of sort builders to add. */ public void addSorts(final SortBuilder<?>... sortBuilders) { stream(sortBuilders).of(stream -> stream.forEach(sortBuilder -> sortBuilderList.add(sortBuilder))); } /** * Checks if any sort builders have been added to this context.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
if (StringUtil.isNotBlank(minDocCountStr)) { facetInfo.minDocCount = Long.parseLong(minDocCountStr); } final String sort = request.getParameter("facet.sort"); if (StringUtil.isNotBlank(sort)) { facetInfo.sort = sort; } final String missing = request.getParameter("facet.missing"); if (StringUtil.isNotBlank(missing)) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/SetGenerators.java
import static com.google.common.collect.testing.SampleElements.Strings.BEFORE_FIRST_2; import static java.lang.Math.max; import static java.util.Arrays.asList; import static java.util.Collections.sort; import static junit.framework.Assert.assertEquals; import com.google.common.annotations.GwtCompatible; import com.google.common.annotations.GwtIncompatible; import com.google.common.collect.ContiguousSet;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
} /** * Checks if the specified sort value is valid for facet sorting. * * @param sort the sort value to check * @return true if the sort value is valid for facets ("count" or "index"), false otherwise */ public boolean isFacetSortValue(final String sort) { return "count".equals(sort) || "index".equals(sort); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0)