- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 4,548 for isString (0.04 sec)
-
guava-tests/test/com/google/common/collect/ImmutableListTest.java
String[] array = new String[] {"a"}; List<String[]> list = ImmutableList.<String[]>of(array); assertEquals(singletonList(array), list); } public void testCopyOf_emptyArray() { String[] array = new String[0]; List<String> list = ImmutableList.copyOf(array); assertEquals(emptyList(), list); } public void testCopyOf_arrayOfOneElement() { String[] array = new String[] {"a"};
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 23.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/FacetResponseTest.java
String fieldName = "category"; String encodedFieldName = BaseEncoding.base64().encode(fieldName.getBytes(StandardCharsets.UTF_8)); String fullFieldName = Constants.FACET_FIELD_PREFIX + encodedFieldName; assertTrue(fullFieldName.startsWith("field:")); assertTrue(fullFieldName.contains(encodedFieldName)); String queryName = "title:test";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 6.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestStringMapGenerator.java
Entry<String, String>[] array = (Entry<String, String>[]) new Entry<?, ?>[entries.length]; int i = 0; for (Object o : entries) { @SuppressWarnings("unchecked") Entry<String, String> e = (Entry<String, String>) o; array[i++] = e; } return create(array); } protected abstract Map<String, String> create(Entry<String, String>[] entries); @Override @SuppressWarnings("unchecked")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
return 0; } @Override public String getMimeType(String file) { return null; } @Override public java.util.Set<String> getResourcePaths(String path) { return null; } @Override public java.net.URL getResource(String path) { return null; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/DocumentUtilTest.java
doc.put("key", mixedList); String[] result = DocumentUtil.getValue(doc, "key", String[].class); assertArrayEquals(new String[] { "string", "123", "true", "45.67" }, result); } public void test_string_array_to_list_conversion() { Map<String, Object> doc = new HashMap<>(); String[] array = { "a", "b", "c" }; doc.put("key", array);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} finally { deleteTempFile(tempFile); } } private Map<String, Map<String, String>> parseObject(final ObjectMapper mapper, final String line) { try { return mapper.readValue(line, new TypeReference<Map<String, Map<String, String>>>() { }); } catch (final Exception e) { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/BaseEncodingTest.java
} } } private static void testEncoding(BaseEncoding encoding, String decoded, String encoded) { testEncodes(encoding, decoded, encoded); testDecodes(encoding, encoded, decoded); } private static void testEncodes(BaseEncoding encoding, String decoded, String encoded) { assertThat(encoding.encode(decoded.getBytes(UTF_8))).isEqualTo(encoded); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24.7K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* @since 24.0 */ public MediaType withParameters(String attribute, Iterable<String> values) { checkNotNull(attribute); checkNotNull(values); String normalizedAttribute = normalizeToken(attribute); ImmutableListMultimap.Builder<String, String> builder = ImmutableListMultimap.builder(); for (Entry<String, String> entry : parameters.entries()) { String key = entry.getKey();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebConfigDbm.java
protected final String _tableDbName = "web_config"; protected final String _tableDispName = "web_config"; protected final String _tablePropertyName = "WebConfig"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
public void testToArrayEmpty() { Iterator<String> iterator = Collections.<String>emptyList().iterator(); String[] array = Iterators.toArray(iterator, String.class); assertTrue(Arrays.equals(new String[0], array)); } @GwtIncompatible // Iterators.toArray(Iterator, Class) public void testToArraySingleton() { Iterator<String> iterator = singletonList("a").iterator();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 54.4K bytes - Viewed (0)