- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 1,581 for greater (0.12 sec)
-
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* * @return array of character codes to be treated as spaces */ protected int[] getSpaceChars() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getCrawlerDocumentSpaceCharsAsArray(); } /** * Creates a digest (abbreviated summary) of document content. * Truncates and normalizes content to create a summary suitable for display. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java
} public void test_isSortField() { String[] sortFields = { "score", "created", "modified", "title" }; queryFieldConfig.setSortFields(sortFields); // Test valid sort fields assertTrue(queryFieldConfig.isSortField("score")); assertTrue(queryFieldConfig.isSortField("created")); assertTrue(queryFieldConfig.isSortField("modified"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33.2K bytes - Viewed (0) -
cmd/test-utils_test.go
} // getRandomDisks - Creates a slice of N random disks, each of the form - minio-XXX func getRandomDisks(n int) ([]string, error) { var erasureDisks []string for range n { path, err := os.MkdirTemp(globalTestTmpDir, "minio-") if err != nil { // Remove directories created so far. removeRoots(erasureDisks) return nil, err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
/** * Creator for protected words dictionary files. * This class manages the creation and registration of protected words dictionary files. */ public class ProtwordsCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(ProtwordsCreator.class); /** * Constructor for ProtwordsCreator. * Initializes the creator with a pattern to match protwords files.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java
return SortedMultisetTestSuiteBuilder.using( new ForwardingTestMultisetGenerator<E>(delegate) { @Override public SortedMultiset<E> create(Object... entries) { return ((SortedMultiset<E>) super.create(entries)).descendingMultiset(); } @Override public Iterable<E> order(List<E> insertionOrder) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.9K bytes - Viewed (0) -
cmd/peer-s3-server.go
return nil, err } } healBuckets.Range(func(_ string, volInfo VolInfo) bool { bi := BucketInfo{ Name: volInfo.Name, Created: volInfo.Created, } if vi, ok := deletedBuckets.Load(volInfo.Name); ok { bi.Deleted = vi.Created } buckets = append(buckets, bi) return true }) deletedBuckets.Range(func(_ string, v VolInfo) bool {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 8.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/SignedBytesTest.java
new byte[] {LEAST, (byte) 1}, new byte[] {(byte) 1}, new byte[] {(byte) 1, LEAST}, new byte[] {GREATEST, GREATEST - (byte) 1}, new byte[] {GREATEST, GREATEST}, new byte[] {GREATEST, GREATEST, GREATEST}); Comparator<byte[]> comparator = SignedBytes.lexicographicalComparator(); Helpers.testComparator(comparator, ordered); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java
writeTestFile(" => output\n"); PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10); // An entry with empty input is created (split of empty string creates array with one empty element) assertEquals(1, result.size()); CharMappingItem item = result.get(0); assertEquals(1, item.getInputs().length);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CurlHelper.java
} /** * Creates a GET request for the specified path. * @param path the request path * @return the configured CurlRequest */ public CurlRequest get(final String path) { return request(Method.GET, path).header("Content-Type", "application/json"); } /** * Creates a POST request for the specified path. * @param path the request path
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
new long[] {LEAST, LEAST}, new long[] {LEAST, 1L}, new long[] {1L}, new long[] {1L, LEAST}, new long[] {GREATEST, GREATEST - 1L}, new long[] {GREATEST, GREATEST}, new long[] {GREATEST, GREATEST, GREATEST}); Comparator<long[]> comparator = UnsignedLongs.lexicographicalComparator(); Helpers.testComparator(comparator, ordered); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0)