- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 210 for emptyList (0.17 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
List<Profile> interpolatedActivations = getProfiles(rawModel); if (interpolatedActivations.isEmpty()) { return Collections.emptyList(); } RegexBasedInterpolator interpolator = new RegexBasedInterpolator(); interpolator.addValueSource(new MapBasedValueSource(context.getProjectProperties()));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableList.java
return CollectCollectors.toImmutableList(); } /** * Returns the empty immutable list. This list behaves and performs comparably to {@link * Collections#emptyList}, and is preferable mainly for consistency and maintainability of your * code. * * <p><b>Performance note:</b> the instance returned is a singleton. */
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 30.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/Lists.java
return list; } /** * Creates an empty {@code CopyOnWriteArrayList} instance. * * <p><b>Note:</b> if you need an immutable empty {@link List}, use {@link Collections#emptyList} * instead. * * @return a new, empty {@code CopyOnWriteArrayList} * @since 12.0 */ @J2ktIncompatible @GwtIncompatible // CopyOnWriteArrayList @InlineMe(Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
if (list == null) { final String value = getSystemProperty(Constants.DEFAULT_SORT_VALUE_PROPERTY); if (StringUtil.isBlank(value)) { list = Collections.emptyList(); } else { final Set<String> keySet = new HashSet<>(); list = split(value, "\n").get(stream -> stream.filter(StringUtil::isNotBlank).map(s -> {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jun 21 20:36:35 UTC 2025 - 133.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
if (attrValue != null) { attrList.add(attrValue); } } return attrList; } return Collections.emptyList(); } catch (final NamingException e) { throw new LdapOperationException("Failed to parse attribute values for " + name, e); } } /**
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 86.3K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* | `http://host/?a=apple&b` | `["apple"]` | `[null]` | */ fun queryParameterValues(name: String): List<String?> { if (queryNamesAndValues == null) return emptyList() val result = ArrayList<String?>(4) for (i in 0 until queryNamesAndValues.size step 2) { if (name == queryNamesAndValues[i]) { result.add(queryNamesAndValues[i + 1]) } }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 63.5K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
EXPECT_EQ(0, memcmp(tensor_data[i], TF_TensorData(v), TF_TensorByteSize(v))); TF_DeleteTensor(v); } } TEST_F(CApiAttributesTest, EmptyList) { auto desc = init("list(int)"); TF_SetAttrIntList(desc, "v", nullptr, 0); auto oper = TF_FinishOperation(desc, s_); ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
Registered: Tue Dec 30 12:39:10 UTC 2025 - Last Modified: Mon Nov 17 00:00:38 UTC 2025 - 97K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
*/ protected void sendConfigFiles(final String index) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); configListMap.getOrDefault(index, Collections.emptyList()).forEach(path -> { String source = null; final String filePath = indexConfigPath + "/" + index + "/" + path; final String dictionaryPath;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 122.4K bytes - Viewed (1) -
android/guava-testlib/test/com/google/common/testing/AbstractPackageSanityTestsTest.java
private final AbstractPackageSanityTests sanityTests = new ConcretePackageSanityTests(); public void testFindClassesToTest_testClass() { assertThat(findClassesToTest(ImmutableList.of(EmptyTest.class))).isEmpty(); assertThat(findClassesToTest(ImmutableList.of(EmptyTests.class))).isEmpty(); assertThat(findClassesToTest(ImmutableList.of(EmptyTestCase.class))).isEmpty();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 02:48:50 UTC 2024 - 5.4K bytes - Viewed (0)