- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 4,619 for _new (0.02 sec)
-
src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java
void messageAndCauseConstructor_setsMessageCause_andUnsuccessfulStatus(String msg) { // Arrange Throwable cause = new IllegalStateException("root cause"); // Act SMBSignatureValidationException ex = new SMBSignatureValidationException(msg, cause); // Assert if (msg == null) { assertNull(ex.getMessage(), "Null message should remain null");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.3K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/ExtensionPlugin.java
extra.put("reloadable_ja_stop", JapaneseStopTokenFilterFactory::new); extra.put("kanji_number", KanjiNumberFilterFactory::new); extra.put("kuromoji_pos_concat", PosConcatenationFilterFactory::new); extra.put("char_type", CharTypeFilterFactory::new); extra.put("number_concat", NumberConcatenationFilterFactory::new); extra.put("pattern_concat", PatternConcatenationFilterFactory::new);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Tue Jul 08 14:37:06 UTC 2025 - 5.5K bytes - Viewed (0) -
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) -
guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
Random random = new Random(); for (int i = 0; i < 100; i++) { byte[] bytes = new byte[64]; random.nextBytes(bytes); String s = new String(bytes, UTF_16LE); // so all random strings are valid assertEquals( new Sink(4).putUnencodedChars(s).hash(), new Sink(4).putBytes(s.getBytes(UTF_16LE)).hash()); assertEquals(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComLogoffAndXTest.java
assertEquals(0, msg.writeBytesWireFormat(null, index)); } @ParameterizedTest @ValueSource(ints = { 0, -1, 7 }) @DisplayName("readParameterWordsWireFormat always returns 0") void readParameterWordsWireFormatReturnsZero(int index) { SmbComLogoffAndX msg = new SmbComLogoffAndX(null); assertEquals(0, msg.readParameterWordsWireFormat(new byte[5], index));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
public void setUp() throws Exception { super.setUp(); testEnv = new Hashtable<>(); testEnv.put("test.key", "test.value"); ldapUser = new LdapUser(testEnv, "testuser"); ComponentUtil.register(new SystemHelper(), "systemHelper"); // Register a mock LdapManager to avoid NPE ComponentUtil.register(new LdapManager() { // Override methods that are called in tests
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
public class CurlHelperTest extends UnitFessTestCase { private CurlHelper curlHelper; @Override public void setUp() throws Exception { super.setUp(); curlHelper = new CurlHelper(); } public void test_get() { // Mock FessConfig and ResourceUtil setupMockConfig("localhost:9200", "", ""); curlHelper.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java
ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getCrawlerWebProtocols() { return "http,https"; } @Override public String getCrawlerFileProtocols() { return "file,smb"; } }); final ProtocolHelper protocolHelper = new ProtocolHelper(); protocolHelper.init();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 21.5K bytes - Viewed (0) -
docs/smb3-features/03-multi-channel-design.md
this.lastActivityTime = establishedTime; this.bytesSent = new AtomicLong(); this.bytesReceived = new AtomicLong(); this.requestsSent = new AtomicLong(); this.requestsReceived = new AtomicLong(); this.errors = new AtomicLong(); this.isPrimary = false; } public void updateActivity() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 39.6K bytes - Viewed (0) -
compat/maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemTest.java
problem = new DefaultProblem(null, null, null, -1, Integer.MIN_VALUE, null); assertEquals(Integer.MIN_VALUE, problem.getColumnNumber()); } @Test void testGetException() { DefaultProblem problem = new DefaultProblem(null, null, null, -1, -1, null); assertNull(problem.getException()); Exception e = new Exception(); problem = new DefaultProblem(null, null, null, -1, -1, e);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.9K bytes - Viewed (0)