- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 4,328 for new3 (0.02 sec)
-
android/guava-tests/test/com/google/common/collect/ObjectArraysTest.java
} public void testToArrayImpl2() { doTestToArrayImpl2(new ArrayList<Integer>(), new Integer[0], false); doTestToArrayImpl2(new ArrayList<Integer>(), new Integer[1], true); doTestToArrayImpl2(Lists.newArrayList(1), new Integer[0], false); doTestToArrayImpl2(Lists.newArrayList(1), new Integer[1], true); doTestToArrayImpl2(Lists.newArrayList(1), new Integer[] {2, 3}, true);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.7K bytes - Viewed (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestTraceTest.java
@Test void testNullValues() { RequestTrace trace = new RequestTrace(null, null, null); assertNull(trace.context()); assertNull(trace.parent()); assertNull(trace.data()); } @Test void testChainedTraces() { RequestTrace root = new RequestTrace("root", null, "root-data"); RequestTrace level1 = new RequestTrace("level1", root, "level1-data");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsDuplicateHostCB.java
_specification = new HpSpecification(); } return _specification; } protected void assertQueryPurpose() { } protected void assertAggregationPurpose() { } protected void assertSpecifyPurpose() { } public static class HpSpecification { protected List<String> columnList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsRelatedQueryCB.java
_specification = new HpSpecification(); } return _specification; } protected void assertQueryPurpose() { } protected void assertAggregationPurpose() { } protected void assertSpecifyPurpose() { } public static class HpSpecification { protected List<String> columnList = new ArrayList<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcBinding.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
assertThrows(SmbException.class, () -> new SMB1SigningDigest(mockTransport, mockAuth)); } @Test @DisplayName("Test update method with valid data") void testUpdateWithValidData() { SMB1SigningDigest digest = new SMB1SigningDigest(testMacSigningKey); byte[] data = new byte[] { 0x01, 0x02, 0x03, 0x04 };
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java
} public void testCopyOfDuplicateKey() { Map<IntegerDiv10, String> original = ImmutableMap.of( new IntegerDiv10(3), "three", new IntegerDiv10(20), "twenty", new IntegerDiv10(11), "eleven", new IntegerDiv10(35), "thirty five", new IntegerDiv10(12), "twelve"); assertThrows(IllegalArgumentException.class, () -> ImmutableSortedMap.copyOf(original)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBProtocolDecodingException.java
/** * */ private static final long serialVersionUID = 4862398838709265475L; /** * Constructs a new SMBProtocolDecodingException with no detail message. */ public SMBProtocolDecodingException() { } /** * Constructs a new SMBProtocolDecodingException with the specified detail message and cause. * * @param message the detail message
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/PACDecodingException.java
public class PACDecodingException extends CIFSException { private static final long serialVersionUID = 1L; /** * Constructs a new PAC decoding exception with no detail message. */ public PACDecodingException() { this(null, null); } /** * Constructs a new PAC decoding exception with the specified detail message. * @param message the detail message */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/compression/DefaultCompressionService.java
throw new CIFSException("Invalid offset or length"); } if (!isAlgorithmSupported(algorithm)) { throw new CIFSException("Unsupported compression algorithm: " + algorithm); } if (length < MIN_COMPRESSION_SIZE) { log.debug("Data too small for compression ({} bytes), returning uncompressed", length); byte[] result = new byte[length];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0)