- Sort Score
- Result 10 results
- Languages All
Results 321 - 330 of 4,671 for isString (0.04 sec)
-
guava-tests/test/com/google/common/collect/AbstractFilteredMapTest.java
private static final Predicate<@Nullable String> NOT_LENGTH_3 = input -> input == null || input.length() != 3; private static final Predicate<@Nullable Integer> EVEN = input -> input == null || input % 2 == 0; static final Predicate<Entry<String, Integer>> CORRECT_LENGTH = input -> input.getKey().length() == input.getValue(); abstract Map<String, Integer> createUnfiltered();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
@Override public String getType() { return delegate.getType(); } @Override public String findTool(String toolName) { return delegate.findTool(toolName); } @Override public boolean matchesRequirements(Map<String, String> requirements) { return delegate.matchesRequirements(requirements);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat May 31 07:20:31 UTC 2025 - 9.4K bytes - Viewed (0) -
cmd/bucket-lifecycle_test.go
testCases := []struct { meta map[string]string ondisk bool }{ { // restore in progress meta: map[string]string{ xhttp.AmzRestore: ongoingRestoreObj().String(), }, ondisk: false, }, { // restore completed meta: map[string]string{ xhttp.AmzRestore: completedRestoreObj(time.Now().Add(time.Hour)).String(), }, ondisk: true, }, {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 31 09:57:57 UTC 2022 - 7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java
new TestStringListMultimapGenerator() { @Override protected ListMultimap<String, String> create(Entry<String, String>[] entries) { ListMultimap<String, String> multimap = ArrayListMultimap.create(); for (Entry<String, String> entry : entries) { multimap.put(entry.getKey(), entry.getValue()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
public String description; /** The file paths to crawl (required, must be valid file URIs). */ @Required @UriType(protocolType = ProtocolType.FILE) @CustomSize(maxKey = "form.admin.max.input.size") public String paths; /** The paths to include during crawling (pattern-based). */ @CustomSize(maxKey = "form.admin.max.input.size") public String includedPaths;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordToLabelDbm.java
protected final String _tablePropertyName = "ElevateWordToLabel"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override public String getTablePropertyName() { return _tablePropertyName; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
cmd/xl-storage-format-utils_test.go
func Test_hashDeterministicString(t *testing.T) { tests := []struct { name string arg map[string]string }{ { name: "zero", arg: map[string]string{}, }, { name: "nil", arg: nil, }, { name: "one", arg: map[string]string{"key": "value"}, }, { name: "several", arg: map[string]string{ xhttp.AmzRestore: "FAILED",
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/AggregateLogJobTest.java
// Execute the job String result = aggregateLogJob.execute(); // Verify result is empty string on success assertNotNull(result); assertEquals("", result); } public void test_execute_withException() { // Setup mock SearchLogHelper that throws exception final String errorMessage = "Test exception occurred";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
*/ protected void registerHandlerNames(final RenderData data) { final String[] dataStoreNames = dataStoreFactory.getDataStoreNames(); final List<Map<String, String>> itemList = new ArrayList<>(); for (final String name : dataStoreNames) { final Map<String, String> map = new HashMap<>(); map.put(Constants.ITEM_LABEL, name);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Joiner.java
/** * Returns a string containing the string representation of each of {@code parts}, using the * previously configured separator between each. * * @since 11.0 */ public final String join(Iterator<?> parts) { return appendTo(new StringBuilder(), parts).toString(); } /** * Returns a string containing the string representation of each of {@code parts}, using the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 19.3K bytes - Viewed (0)