- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,279 for array1 (0.04 sec)
-
src/main/java/jcifs/internal/CommonServerMessageBlock.java
/** * Encodes this message into a byte array. * * @param dst the destination byte array * @param dstIndex the starting index in the destination array * @return message length */ int encode(byte[] dst, int dstIndex); /** * Sets the signing digest for this message. * * @param digest the signing digest to set
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/serializer/DataSerializer.java
} } /** * Deserializes a byte array using Kryo deserialization. * <p> * Uses the thread-local Kryo instance to read both the class information * and object data from the byte array input stream. * </p> * * @param bytes the byte array to deserialize * @return the deserialized object */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/ListCreationTester.java
@CollectionSize.Require(absent = {ZERO, ONE}) public void testCreateWithDuplicates() { E[] array = createSamplesArray(); array[1] = e0(); collection = getSubjectGenerator().create(array); expectContents(array); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MultipleCrawlingAccessException.java
* This exception holds an array of Throwable objects representing the individual causes. * It extends CrawlingAccessException and provides methods to print the stack traces of all causes. * */ public class MultipleCrawlingAccessException extends CrawlingAccessException { private static final long serialVersionUID = 1L; /** * The array of throwables that caused this exception. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
return targetClass; } /** * Returns the array of arguments. * * @return Array of arguments */ public Object[] getMethodArgs() { return methodArgs; } /** * Returns the array of parameter types. * * @return Array of parameter types */ public Class<?>[] getParamTypes() { return paramTypes;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.8K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/filter/FilterHashEqualsTest.java
*/ package org.apache.maven.artifact.resolver.filter; import java.util.Arrays; import java.util.List; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertTrue; /** */ class FilterHashEqualsTest { @Test void testIncludesExcludesArtifactFilter() { List<String> patterns = Arrays.asList("c", "d", "e");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
} } /** * Array structure for DFS enumeration containing level 1 information */ public static class DfsEnumArray1 extends NdrObject { /** * Default constructor for DfsEnumArray1 */ public DfsEnumArray1() { // Default constructor } /** * Number of DFS entries in the array */ public int count;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
} override fun getSupportedCipherSuites(): Array<String> = delegate!!.supportedCipherSuites override fun getEnabledCipherSuites(): Array<String> = delegate!!.enabledCipherSuites override fun setEnabledCipherSuites(suites: Array<String>) { delegate!!.enabledCipherSuites = suites } override fun getSupportedProtocols(): Array<String> = delegate!!.supportedProtocols
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/jcifs/util/SecureKeyManagerTest.java
assertEquals(32, derived3.length, "Derived key should have correct length"); assertFalse(Arrays.equals(derived1, derived2), "Different labels should produce different keys"); assertFalse(Arrays.equals(derived1, derived3), "Different contexts should produce different keys"); } @Test public void testStoreNullKey() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0010=argument[{0}] is null or empty string. ECL0011=argument[{0}] is null or empty array. ECL0012=argument[{0}] is null or empty collection. ECL0013=argument[{0}] is null or empty map. ECL0014=argument[{0}] which is null the index of array is negative integer. ECL0015=argument[{0}] which is null the index of array exceed the size of array[{1}]. ECL0016=key[{0}] is not included in this BeanMap : {1}. ECL0017=Exception occurred, because {0}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0)