- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,299 for Empty (0.03 sec)
-
android/guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java
extends ForwardingMap<Class<? extends @NonNull B>, B> implements ClassToInstanceMap<B>, Serializable { private static final ImmutableClassToInstanceMap<Object> EMPTY = new ImmutableClassToInstanceMap<>(ImmutableMap.<Class<?>, Object>of()); /** * Returns an empty {@code ImmutableClassToInstanceMap}. * * <p><b>Performance note:</b> the instance returned is a singleton. * * @since 19.0 */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed May 10 21:56:03 UTC 2023 - 7.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetEntrySetTester.java
getMultiset().entrySet().clear(); assertTrue("multiset not empty after entrySet().clear()", getMultiset().isEmpty()); } @CollectionSize.Require(ONE) @CollectionFeature.Require(SUPPORTS_ITERATOR_REMOVE) public void testEntrySet_iteratorRemovePropagates() { Iterator<Multiset.Entry<E>> iterator = getMultiset().entrySet().iterator(); assertTrue(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
if (id == ProtwordsItem.getId()) { return OptionalEntity.of(ProtwordsItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<ProtwordsItem> selectList(final int offset, final int size) { if (protwordsItemList == null) { reload(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
if (id == StopwordsItem.getId()) { return OptionalEntity.of(StopwordsItem); } } return OptionalEntity.empty(); } @Override public synchronized PagingList<StopwordsItem> selectList(final int offset, final int size) { if (stopwordsItemList == null) { reload(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 9.6K bytes - Viewed (0) -
cmd/storage-errors.go
var errPathNotFound = StorageErr("path not found") // errVolumeNotFound - cannot find the volume. var errVolumeNotFound = StorageErr("volume not found") // errVolumeNotEmpty - volume not empty. var errVolumeNotEmpty = StorageErr("volume is not empty") // errVolumeAccessDenied - cannot access volume, insufficient permissions. var errVolumeAccessDenied = StorageErr("volume access denied")
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 12:04:40 UTC 2024 - 6.4K bytes - Viewed (0) -
internal/store/queuestore_test.go
for _, key := range keys { err := store.Del(key) if err != nil { t.Fatal(err) } } // Re-list keys = store.List() if len(keys) > 0 || err != nil { t.Fatalf("Expected List() to return empty list and no error, got %v err: %v", keys, err) } } func TestMultiplePutGets(t *testing.T) { defer func() { if err := tearDownQueueStore(); err != nil { t.Fatalf("Failed to tear down store; %v", err)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 8.7K bytes - Viewed (0) -
cmd/bucket-lifecycle-handlers_test.go
secretKey string // Sent body body []byte // Expected response expectedRespStatus int lifecycleResponse []byte errorResponse APIErrorResponse shouldPass bool }{ // GET empty credentials { method: http.MethodGet, bucketName: bucketName, accessKey: "", secretKey: "", expectedRespStatus: http.StatusForbidden, lifecycleResponse: []byte(""),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:50:49 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
} protected String getOicScope() { return ComponentUtil.getSystemProperties().getProperty(OIC_SCOPE, StringUtil.EMPTY); } protected String getOicClientId() { return ComponentUtil.getSystemProperties().getProperty(OIC_CLIENT_ID, StringUtil.EMPTY); } protected String getOicAuthServerUrl() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 12.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableMap.java
checkPositionIndex(n, entryArray.length); if (n == 0) { @SuppressWarnings("unchecked") // it has no entries so the type variables don't matter ImmutableMap<K, V> empty = (ImmutableMap<K, V>) EMPTY; return empty; } try { return fromEntryArrayCheckingBucketOverflow(n, entryArray, throwIfDuplicateKeys); } catch (BucketOverflowException e) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 28 18:11:09 UTC 2024 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
} String virtualHost = keyMatch.getVirtualHost(); if (StringUtil.isBlank(virtualHost)) { virtualHost = StringUtil.EMPTY; } Map<String, List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>>> queryMap = keyMatchQueryMap.get(virtualHost); if (queryMap == null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (0)