- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 4,619 for _new (0.02 sec)
-
src/test/java/jcifs/smb1/smb1/SmbComDeleteTest.java
assertEquals(TEST_FILE_NAME, new String(dst, 1, TEST_FILE_NAME.length())); } @Test public void testReadParameterWordsWireFormat() { // This method is expected to do nothing and return 0 int result = smbComDelete.readParameterWordsWireFormat(new byte[0], 0); assertEquals(0, result); } @Test public void testReadBytesWireFormat() {
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/test/java/jcifs/dcerpc/ndr/NdrLongTest.java
int positiveValue = 12345; NdrLong ndrLongPositive = new NdrLong(positiveValue); assertEquals(positiveValue, ndrLongPositive.value, "Constructor should correctly initialize with a positive value."); // Test case 2: Negative value int negativeValue = -54321; NdrLong ndrLongNegative = new NdrLong(negativeValue);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java
DefaultContentsParser defaultContentsParser = new DefaultContentsParser(); String[] supportedFields = new String[] { "content", "title" }; String[] tagFieldNames = new String[] { "label", "virtual_host" }; String roleFieldName = "role"; public void test_parseQueryLog() throws Exception { QueryLog queryLog = new QueryLog("content:検索エンジン", null);
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java
assertTrue(synonymItem1.equals(synonymItem1)); assertTrue(synonymItem1.equals(new SynonymItem(1, new String[] { "a" }, new String[] { "b" }))); assertFalse(synonymItem1.equals(new SynonymItem(2, new String[] { "a" }, new String[] { "B", }))); assertFalse(synonymItem1.equals(new SynonymItem(2, new String[] { "A" }, new String[] { "b" }))); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 5K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
public Integer getCookieDefaultExpireAsInteger() { return null; } }); FessCookieResourceProvider provider = new FessCookieResourceProvider(ComponentUtil.getFessConfig(), new InvertibleCryptographer("AES", "1234567890123456", null) { @Override public String encrypt(String plainText) { return plainText;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNegotiateResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
public static final String ERRORS_crud_invalid_mode = "{errors.crud_invalid_mode}"; /** The key of the message: Failed to create a new data. */ public static final String ERRORS_crud_failed_to_create_instance = "{errors.crud_failed_to_create_instance}"; /** The key of the message: Failed to create a new data. ({0}) */ public static final String ERRORS_crud_failed_to_create_crud_table = "{errors.crud_failed_to_create_crud_table}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 119.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInformationTest.java
long originalValue = 0x123456789ABCDEFL; FileEndOfFileInformation original = new FileEndOfFileInformation(originalValue); // Encode byte[] buffer = new byte[8]; int encoded = original.encode(buffer, 0); assertEquals(8, encoded); // Decode FileEndOfFileInformation decoded = new FileEndOfFileInformation(); int decodedBytes = decoded.decode(buffer, 0, 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/SafeTreeSetTest.java
public static Test suite() { TestSuite suite = new TestSuite(); suite.addTestSuite(SafeTreeSetTest.class); suite.addTest( NavigableSetTestSuiteBuilder.using( new TestStringSetGenerator() { @Override protected Set<String> create(String[] elements) { return new SafeTreeSet<>(asList(elements)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacLogonInfo.java
throw new PACDecodingException("Invalid number of SIDs in PAC expect" + extraSidCount + " have " + realExtraSidCount); } extraSidAtts = new PacSidAttributes[extraSidCount]; final int[] pointers = new int[extraSidCount]; final int[] attributes = new int[extraSidCount]; for (int i = 0; i < extraSidCount; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.3K bytes - Viewed (0)