- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 60 for emptify (0.16 seconds)
-
cmd/object-api-listobjects_test.go
// Test listing an empty directory in recursive mode (62) {"test-bucket-empty-dir", "", "", "", 10, resultCases[31], nil, true}, // Test listing an empty directory in a non recursive mode (63) {"test-bucket-empty-dir", "", "", SlashSeparator, 10, resultCases[32], nil, true}, // Test listing a directory which contains an empty directory (64)
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 76.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/MapsTest.java
} private static final Map<Integer, Integer> EMPTY = emptyMap(); private static final Map<Integer, Integer> SINGLETON = singletonMap(1, 2); public void testMapDifferenceEmptyEmpty() { MapDifference<Integer, Integer> diff = Maps.difference(EMPTY, EMPTY); assertTrue(diff.areEqual()); assertEquals(EMPTY, diff.entriesOnlyOnLeft()); assertEquals(EMPTY, diff.entriesOnlyOnRight());
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 22:56:33 GMT 2025 - 65K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
} default void setDefaultLabelValue(final String value) { setSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, value); propMap.remove(DEFAULT_LABEL_VALUES); } default String getDefaultLabelValue() { return getSystemProperty(Constants.DEFAULT_LABEL_VALUE_PROPERTY, StringUtil.EMPTY); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 88.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/MapsTest.java
} private static final Map<Integer, Integer> EMPTY = emptyMap(); private static final Map<Integer, Integer> SINGLETON = singletonMap(1, 2); public void testMapDifferenceEmptyEmpty() { MapDifference<Integer, Integer> diff = Maps.difference(EMPTY, EMPTY); assertTrue(diff.areEqual()); assertEquals(EMPTY, diff.entriesOnlyOnLeft()); assertEquals(EMPTY, diff.entriesOnlyOnRight());
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 22:56:33 GMT 2025 - 62.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
EMPTY, request); } validateRawRepositories(problems, m.getRepositories(), "repositories.repository.", EMPTY, request); validateRawRepositories( problems, m.getPluginRepositories(), "pluginRepositories.pluginRepository.", EMPTY, request); Build build = m.getBuild();Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 03 15:06:05 GMT 2025 - 66.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Sets.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 81.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt
* * If a path's last segment is the empty string then the path ends with "/". This class always * builds non-empty paths: if the path is omitted it defaults to "/". The default path's segment * list is a single empty string: `[""]`. * * ### Query * * The query is optional: it can be null, empty, or non-empty. For many HTTP URLs the query string
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Mon May 05 16:01:00 GMT 2025 - 63.5K bytes - Click Count (0) -
guava/src/com/google/common/collect/Iterators.java
@GwtCompatible public final class Iterators { private Iterators() {} /** * Returns the empty iterator. * * <p>The {@link Iterable} equivalent of this method is {@link ImmutableSet#of()}. */ static <T extends @Nullable Object> UnmodifiableIterator<T> emptyIterator() { return emptyListIterator(); } /** * Returns the empty iterator. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Sep 16 12:42:11 GMT 2025 - 51.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
logger.debug("Login failed for user: {}", username, e); } return OptionalEntity.empty(); } /** * Checks if the specified LDAP user is allowed to have empty group and role permissions. * * @param ldapUser the LDAP user to check * @return true if empty permissions are allowed, false otherwise */ protected boolean allowEmptyGroupAndRole(final LdapUser ldapUser) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 86.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
* @return the string with highlight tags removed */ protected String removeHighlightTag(final String str) { return str.replaceAll(originalHighlightTagPre, StringUtil.EMPTY).replaceAll(originalHighlightTagPost, StringUtil.EMPTY); } /** * Creates highlight information based on screen width. * Adjusts fragment size for mobile devices. * * @return the highlight informationCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 52.6K bytes - Click Count (0)