- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 392 for lastname (0.06 sec)
-
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2Response.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 8.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetServerEnum2.java
*/ public static final int SV_TYPE_DOMAIN_ENUM = 0x80000000; static final String[] DESCR = { "WrLehDO\u0000B16BBDz\u0000", "WrLehDz\u0000B16BBDz\u0000", }; String domain, lastName = null; int serverTypes; /** * Constructs a NetServerEnum2 request * @param config * the configuration to use * @param domain
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
this.maxDataCount = batchSize; this.maxSetupCount = 0; } @Override public void reset(final int rk, final String lastName) { super.reset(); this.resumeKey = rk; this.filename = lastName; this.flags2 = 0; } @Override protected int writeSetupWireFormat(final byte[] dst, int dstIndex) { dst[dstIndex] = getSubCommand();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2ResponseTest.java
assertTrue(result.contains("sid=")); assertTrue(result.contains("searchCount=")); assertTrue(result.contains("isEndOfSearch=")); assertTrue(result.contains("lastName=")); } @Test void testReadParametersWireFormat_NotFindFirst() { // Test reading parameters when subcommand is not TRANS2_FIND_FIRST2
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
/** * Resets the transaction state with key and last name * @param key * the key to use for reset * @param lastName * the last name for the transaction */ protected void reset(final int key, final String lastName) { reset(); } @Override public boolean hasMoreElements() { return this.hasMore; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java
void testServerInfo1GetName() throws Exception { NetServerEnum2Response.ServerInfo1 server = response.new ServerInfo1(); String testName = "TESTSERVER"; server.name = testName; assertEquals(testName, server.getName()); } @Test @DisplayName("Test ServerInfo1 getAttributes") void testServerInfo1GetAttributes() throws Exception {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
assertTrue(transaction.hasMoreElements()); } @Test @DisplayName("Test reset with key and lastName") void testResetWithKeyAndLastName() { // Reset with parameters should not throw exception assertDoesNotThrow(() -> transaction.reset(123, "testName")); // Transaction should be ready for reuse assertTrue(transaction.hasMoreElements()); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTransaction.java
} @Override void reset() { super.reset(); isPrimary = hasMore = true; } void reset(final int key, final String lastName) { reset(); } @Override public boolean hasMoreElements() { return hasMore; } @Override public Object nextElement() { if (isPrimary) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multimap.java
* for (President pres : US_PRESIDENTS_IN_ORDER) { * multimap.put(pres.firstName(), pres.lastName()); * } * for (String firstName : multimap.keySet()) { * List<String> lastNames = multimap.get(firstName); * out.println(firstName + ": " + lastNames); * } * } * * ... produces output such as: * * {@snippet : * Zachary: [Taylor]
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 15.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
trans = SmbTransport.getSmbTransport(addr, url.getPort()); tree = trans.getSmbSession(auth).getSmbTree(share, null); } final String hostName = getServerWithDfs(); tree.inDomainDfs = dfs.resolve(hostName, tree.share, null, auth) != null; if (tree.inDomainDfs) { tree.connectionState = 2; } try { if (LogStream.level >= 3) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0)