- Sort Score
- Result 10 results
- Languages All
Results 841 - 850 of 925 for asArray (0.03 sec)
-
src/test/java/org/codelibs/fess/suggest/entity/ElevateWordTest.java
// Check roles assertArrayEquals(new String[] { "role1", "role2", "role3" }, suggestItem.getRoles()); // Check kind assertNotNull(suggestItem.getKinds()); // The kinds array structure might be different boolean hasUserKind = false; for (SuggestItem.Kind kind : suggestItem.getKinds()) { if (kind == SuggestItem.Kind.USER) { hasUserKind = true;
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 16K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
assertSame(mockName, nbtAddress.getName()); } @Test void testGetAddress() { // Test getAddress for correct byte array conversion mockName = new Name(mockConfig, "TEST", 0x20, null); NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
testParams.conditions.put(SearchRequestParams.AS_Q, null); assertFalse(searchRequestParams.hasConditionQuery()); } public void test_hasConditionQuery_withEmptyArray() { // Test with empty array testParams.conditions.put(SearchRequestParams.AS_Q, new String[] {}); assertFalse(searchRequestParams.hasConditionQuery()); } // Test for isEmptyArray method
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
chainable_api.go
// Select accepts both string arguments and arrays. // // // Select name and age of user using multiple arguments // db.Select("name", "age").Find(&users) // // Select name and age of user using an array // db.Select([]string{"name", "age"}).Find(&users) func (db *DB) Select(query interface{}, args ...interface{}) (tx *DB) { tx = db.getInstance() switch v := query.(type) { case []string:
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Sun May 25 07:40:40 UTC 2025 - 14.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerContextTest.java
assertNull(crawlerContext.removeSitemaps()); // Test with null crawlerContext.addSitemaps(null); assertNull(crawlerContext.removeSitemaps()); // Test with empty array crawlerContext.addSitemaps(new String[0]); String[] emptyArray = crawlerContext.removeSitemaps(); assertNotNull(emptyArray); assertEquals(0, emptyArray.length); } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 25.6K bytes - Viewed (0) -
docs/smb3-features/05-rdma-smb-direct-design.md
// Create response with data from RDMA buffer Smb2ReadResponse response = new Smb2ReadResponse(); response.setData(readBuffer.array(), 0, request.getLength()); // Notify waiting thread request.setResponse(response); } finally { readRegion.close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 35.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
} } } /** * Parses a storage path into bucket name and object path components. * @param path the storage path to parse (format: bucket/object/path) * @return an array containing the bucket name and object path * @throws CrawlingAccessException if the path format is invalid */ protected String[] parsePath(final String path) { if (StringUtil.isNotEmpty(path)) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17.9K bytes - Viewed (2) -
android/guava/src/com/google/common/base/Joiner.java
import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Map.Entry; import org.jspecify.annotations.Nullable; /** * An object which joins pieces of text (specified as an array, {@link Iterable}, varargs or even a * {@link Map}) with a separator. It either appends the results to an {@link Appendable} or returns * them as a {@link String}. Example: * * {@snippet :
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 19.3K bytes - Viewed (0) -
docs/sts/web-identity.md
## API Request Parameters ### WebIdentityToken
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* @see TimestampConversionUtil */ public abstract class TimeConversionUtil { /** * Do not instantiate. */ protected TimeConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /** * Returns the pattern string for {@link DateFormat#SHORT} style in the default locale.
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0)