- Sort Score
- Num 10 results
- Language All
Results 931 - 940 of 3,381 for sering (0.08 seconds)
-
src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java
.body("record_count", greaterThanOrEqualTo(0)); } @Test public void testSuggestWords_withNum() { Map<String, String> params = new HashMap<>(); params.put("q", "a"); params.put("num", "5"); String response = given().contentType("application/json") .header("Referer", getFessUrl()) .params(params) .when()
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
// keys are requested parameter names (treated as field name here) protected Map<String, Object> elementsAll; // lazy-loaded, then after not null protected Map<String, MultipartFormFile> elementsFile; // me too protected Map<String, String[]> elementsText; // me too // ===================================================================================
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:48:41 GMT 2026 - 18.9K bytes - Click Count (1) -
src/test/java/org/codelibs/curl/io/IOIntegrationTest.java
public void setRequestProperty(String key, String value) { List<String> list = new ArrayList<>(); list.add(value); requestProperties.put(key, list); } public Map<String, List<String>> getRecordedRequestProperties() { return requestProperties; } } @Test
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Sat Mar 21 12:00:34 GMT 2026 - 44.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java
String message = ""; SearchQueryException exception = new SearchQueryException(message); assertEquals(message, exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructorWithMessageAndNullCause() { // Test constructor with message and null cause String message = "Query processing error";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
// Test that field set configuration is properly handled Set<String> fieldSet = new HashSet<>(); fieldSet.add("cluster_name"); fieldSet.add("status"); FessConfig mockConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Set<String> getApiPingEsFieldSet() { return fieldSet; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 7.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/CharSequenceReaderTest.java
public void testMarkAndReset() throws IOException { String string = "abcdefghijklmnopqrstuvwxyz"; CharSequenceReader reader = new CharSequenceReader(string); assertTrue(reader.markSupported()); assertThat(readFully(reader)).isEqualTo(string); assertFullyRead(reader); // reset and read again reader.reset(); assertThat(readFully(reader)).isEqualTo(string); assertFullyRead(reader);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 6.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java
Future<String> f = testExecutor.submit(doNothing(), RESULT_VALUE); mock.assertLastMethodCalled("submit"); assertThat(f.get()).isEqualTo(RESULT_VALUE); } { MockExecutor mock = new MockExecutor(); TestExecutor testExecutor = new TestExecutor(mock); Callable<String> task = Callables.returning(RESULT_VALUE); Future<String> f = testExecutor.submit(task);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 10.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/ComparatorsTest.java
Comparator<String> comparator = Ordering.natural(); Comparator<Iterable<String>> lexy = Comparators.lexicographical(comparator); ImmutableList<String> empty = ImmutableList.of(); ImmutableList<String> a = ImmutableList.of("a"); ImmutableList<String> aa = ImmutableList.of("a", "a"); ImmutableList<String> ab = ImmutableList.of("a", "b"); ImmutableList<String> b = ImmutableList.of("b");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Apr 12 15:07:59 GMT 2025 - 6.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/MultiReaderTest.java
public void testSimple() throws Exception { String testString = "abcdefgh"; CharSource source = newCharSource(testString); Reader joinedReader = CharSource.concat(source, source).openStream(); String expectedString = testString + testString; assertThat(CharStreams.toString(joinedReader)).isEqualTo(expectedString); } private static CharSource newCharSource(String text) { return new CharSource() { @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 3.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/AsciiTest.java
for (char c : IGNORED.toCharArray()) { String str = String.valueOf(c); assertEquals(str, c, Ascii.toLowerCase(c)); assertEquals(str, c, Ascii.toUpperCase(c)); assertFalse(str, Ascii.isLowerCase(c)); assertFalse(str, Ascii.isUpperCase(c)); } } public void testCharsLower() { for (char c : LOWER.toCharArray()) { String str = String.valueOf(c);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 5.7K bytes - Click Count (0)