- Sort Score
- Result 10 results
- Languages All
Results 1161 - 1170 of 1,414 for empty (0.02 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
d.parameterCount = 0; d.dataCount = 0; d.headerStart = 0; byte[] buf = new byte[100]; int result = d.readBytesWireFormat(buf, 0); // Should handle empty read gracefully assertEquals(0, result, "Should return 0 for no data"); assertTrue(d.getParametersDone(), "parametersDone should be true when total is 0");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
assertEquals(1, boolResult.must().size()); assertEquals(1, boolResult.should().size()); assertEquals(1, boolResult.mustNot().size()); } // Test convertBooleanQuery with empty BooleanQuery public void test_convertBooleanQuery_withEmptyQuery() { BooleanQuery.Builder boolQueryBuilder = new BooleanQuery.Builder(); BooleanQuery booleanQuery = boolQueryBuilder.build();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
} break; default: break; } return OptionalEntity.empty(); } /** * Creates a PathMapping entity from the provided form data. * * @param form the create form containing path mapping data
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java
return populate(new HashMap<String, String>(), entries); } // TODO: call conversion constructors or factory methods instead of using // populate() on an empty map @CanIgnoreReturnValue private static <T, M extends Map<T, String>> M populate(M map, Entry<T, String>[] entries) { for (Entry<T, String> entry : entries) { map.put(entry.getKey(), entry.getValue());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 16:28:01 UTC 2025 - 17.2K bytes - Viewed (0) -
ci/official/containers/ml_build_arm64/builder.devtoolset/gcc9-fixups.patch
index c555bf2..143b26d 100644 --- a/include/libc-symbols.h +++ b/include/libc-symbols.h @@ -107,6 +107,11 @@ # endif #endif +#ifndef __attribute_copy__ +/* Provide an empty definition when cdefs.h is not included. */ +# define __attribute_copy__(arg) +#endif + #ifndef __ASSEMBLER__ /* GCC understands weak symbols and aliases; use its interface where
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Nov 11 19:25:56 UTC 2024 - 8.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeSet.java
public class TreeRangeSet<C extends Comparable<?>> extends AbstractRangeSet<C> implements Serializable { @VisibleForTesting final NavigableMap<Cut<C>, Range<C>> rangesByLowerBound; /** Creates an empty {@code TreeRangeSet} instance. */ public static <C extends Comparable<?>> TreeRangeSet<C> create() { return new TreeRangeSet<>(new TreeMap<Cut<C>, Range<C>>()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 32.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSetMultimap.java
Function<? super T, ? extends Stream<? extends V>> valuesFunction) { return CollectCollectors.flatteningToImmutableSetMultimap(keyFunction, valuesFunction); } /** * Returns the empty multimap. * * <p><b>Performance note:</b> the instance returned is a singleton. */ // Casting is safe because the multimap will never hold any elements. @SuppressWarnings("unchecked")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
Secured secured = method.getAnnotation(Secured.class); assertNotNull(secured); assertEquals("ROLE_CHILD_METHOD", secured.value()[0]); } // Test with empty roles array @Secured({}) static class EmptyRolesClass { } public void test_emptyRolesArray() { Secured secured = EmptyRolesClass.class.getAnnotation(Secured.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java
assertEquals(5000, result); assertEquals(5000, response.getData().length); } @Test @DisplayName("Should handle empty name array") void testEmptyNameArray() { byte[] emptyName = new byte[0]; TestCreateContextResponse response = new TestCreateContextResponse(emptyName);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/PredicatesTest.java
checkSerialization(Predicates.and(TRUE, isOdd(), FALSE)); } public void testAnd_applyIterable() { Collection<Predicate<@Nullable Integer>> empty = Arrays.asList(); assertEvalsToTrue(Predicates.and(empty)); assertEvalsLikeOdd(Predicates.and(Arrays.asList(isOdd()))); assertEvalsLikeOdd(Predicates.and(Arrays.asList(TRUE, isOdd())));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 32.2K bytes - Viewed (0)