- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 407 for name3 (0.03 sec)
-
src/test/java/jcifs/internal/dfs/ReferralTest.java
for (String name : expectedNames) { bb.put(name.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); } referral.decode(testBuffer, 0, testBuffer.length); assertArrayEquals(expectedNames, referral.getExpandedNames()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
// Second name entry (18 bytes) String name2 = "DOMAIN "; System.arraycopy(name2.getBytes("US-ASCII"), 0, src, srcIndex + 19, 16); src[srcIndex + 34] = 0x00; // hex code src[srcIndex + 35] = (byte) 0x84; // flags: group, active // Third name entry (18 bytes) - matching queryAddress String name3 = "TEST ";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
* * @param cfg the configuration to use * @param name the NetbiosName to copy from */ public Name(final Configuration cfg, final NetbiosName name) { this.config = cfg; this.name = name.getName(); this.hexCode = name.getNameType(); this.scope = name.getScope(); if (name instanceof Name) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/Name.java
Name() { } /** * Creates a NetBIOS name with the specified attributes. * * @param name the NetBIOS name (will be truncated to 15 characters if longer) * @param hexCode the NetBIOS name type/suffix * @param scope the NetBIOS scope identifier (uses default if null or empty) */ public Name(String name, final int hexCode, final String scope) { if (name.length() > 15) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
assertFalse(name1.equals(name2)); } @Test void equals_withBothNullScope_shouldReturnTrue() { Name name1 = new Name(mockConfig, "TEST", 0x20, null); name1.scope = null; Name name2 = new Name(mockConfig, "TEST", 0x20, null); name2.scope = null; assertTrue(name1.equals(name2)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
assertEquals(engine2, retrievedByClass); // But original names should still work assertEquals(engine1, scriptEngineFactory.getScriptEngine("name1")); assertEquals(engine2, scriptEngineFactory.getScriptEngine("name2")); } // Test with engine that has very long class name public void test_add_longClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
* return names for SIDs corresponding to local accounts for which the domain controller is not an * authority. * @param tc * The context that should be used to communicate with the named server. * @param sids * The SIDs that should be resolved. After this function is called, the names associated with the SIDs
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
cmd/erasure-object_test.go
Versioned: true, }) if err != nil { t.Fatalf("Erasure Object upload failed: <ERROR> %s", err) } names[i] = ObjectToDelete{ ObjectV: ObjectV{ ObjectName: objInfo.Name, VersionID: objInfo.VersionID, }, } } names = append(names, ObjectToDelete{ ObjectV: ObjectV{ ObjectName: "dir/obj1", VersionID: mustGetUUID(), // add a non-existent UUID. }, })
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 38.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponse.java
import jcifs.Configuration; import jcifs.internal.SMBProtocolDecodingException; /** * Response for SMB1 TRANS_CALL_NAMED_PIPE transaction. * * This response contains the data returned from the named pipe * after a call transaction has been processed by the server. */ public class TransCallNamedPipeResponse extends SmbComTransactionResponse { private final byte[] outputBuffer; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3K bytes - Viewed (0)