- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 896 for Array (0.01 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComDeleteTest.java
assertEquals(ServerMessageBlock.SMB_COM_DELETE, smbComDelete.command); } @Test public void testWriteParameterWordsWireFormat() { // Test the writing of parameter words to a byte array byte[] dst = new byte[2]; int bytesWritten = smbComDelete.writeParameterWordsWireFormat(dst, 0); assertEquals(2, bytesWritten); // ATTR_HIDDEN (0x02) | ATTR_SYSTEM (0x04) = 0x06
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/InputStreamUtil.java
throw new IORuntimeException(e); } } /** * Gets a byte array from an {@link InputStream}. * <p> * The input stream is not closed. * </p> * * @param is the input stream (must not be {@literal null}) * @return the byte array */ public static final byte[] getBytes(final InputStream is) { assertArgumentNotNull("is", is);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
assertNotSame(thrower1, thrower2); } // Helper method to check if array contains a value private boolean containsValue(String[] array, String value) { for (String element : array) { if (element.equals(value)) { return true; } } return false; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
docs/es/llm-prompt.md
* string: string * bug: bug * docs: documentación (do not translate to "documentos") * cheat sheet: cheat sheet (do not translate to "chuleta") * key (as in key-value pair, dictionary key): clave * array (as in JSON array): array * API key: API key (do not translate to "clave API") * 100% test coverage: cobertura de tests del 100% * back and forth: de un lado a otro * I/O (as in "input and output"): I/O (do not translate to "E/S")
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 18:57:50 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
* <li>{@code ELEVATE_WORD_ROLES} - The key for elevate word roles.</li> * </ul> * * <p>Methods:</p> * <ul> * <li>{@code get()} - Retrieves an array of elevate words from the settings.</li> * <li>{@code add(ElevateWord elevateWord)} - Adds a new elevate word to the settings.</li> * <li>{@code delete(String elevateWord)} - Deletes an elevate word from the settings.</li>
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java
*/ public OpenIdUser getUser() { return new OpenIdUser(getUserId(), getUserGroups(), getDefaultRolesAsArray()); } /** * Gets the default groups as an array. * * @return the default groups */ protected static String[] getDefaultGroupsAsArray() { final String value = ComponentUtil.getFessConfig().getSystemProperty("oic.default.groups");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HandshakeTest.kt
} } class FakeSSLSession( private val protocol: String, private val cipherSuite: String, private val peerCertificates: Array<Certificate>?, private val localCertificates: Array<Certificate>?, ) : DelegatingSSLSession(null) { override fun getProtocol() = protocol override fun getCipherSuite() = cipherSuite
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java
* @param sitemap the sitemap to remove */ public void removeSitemap(final Sitemap sitemap) { sitemapList.remove(sitemap); } /** * Gets all sitemaps in this set as an array. * @return an array of sitemaps */ public Sitemap[] getSitemaps() { return sitemapList.toArray(new Sitemap[sitemapList.size()]); } /** * Sets the type of this sitemap set.
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java
* Reads up to b.length bytes of data from this input stream into an array of bytes. * * @throws IOException if a network error occurs */ @Override public int read(final byte[] b) throws IOException { return read(b, 0, b.length); } /** * Reads up to len bytes of data from this input stream into an array of bytes. * * @throws IOException if a network error occurs
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.4K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Types.java
// TODO(user): This is not the most efficient way to handle generic // arrays, but is there another way to extract the array class in a // non-hacky way (i.e. using String value class names- "[L...")? return Array.newInstance(componentType, 0).getClass(); } /* * TODO(benyu): Once behavior is the same for all Java (and Android) versions we support, delete
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 23.5K bytes - Viewed (0)