- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 28 for groupname (0.3 sec)
-
src/main/java/jcifs/netbios/NodeStatusResponse.java
if (this.queryAddress.hostName.isUnknown()) { this.queryAddress.hostName = new Name(this.config, n, hexCode, scope); } this.queryAddress.groupName = groupName; this.queryAddress.nodeType = ownerNodeType; this.queryAddress.isBeingDeleted = isBeingDeleted; this.queryAddress.isInConflict = isInConflict;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
int address, nodeType; boolean groupName, isBeingDeleted, isInConflict, isActive, isPermanent, isDataFromNodeStatus; byte[] macAddress; String calledName; NbtAddress(final Name hostName, final int address, final boolean groupName, final int nodeType) { this.hostName = hostName; this.address = address; this.groupName = groupName; this.nodeType = nodeType; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
int address, nodeType; boolean groupName, isBeingDeleted, isInConflict, isActive, isPermanent, isDataFromNodeStatus; byte[] macAddress; String calledName; NbtAddress(final Name hostName, final int address, final boolean groupName, final int nodeType) { this.hostName = hostName; this.address = address; this.groupName = groupName; this.nodeType = nodeType; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
pom.xml
</sources> </mapping> <mapping> <directory>${packaging.fess.var.dir}</directory> <filemode>755</filemode> <username>${packaging.fess.user}</username> <groupname>${packaging.fess.group}</groupname> </mapping> <!-- bin --> <mapping> <directory>${packaging.fess.bin.dir}</directory> <filemode>755</filemode> <sources> <source>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameQueryResponse.java
return 0; } final boolean groupName = ((src[srcIndex] & 0x80) == 0x80) == true; final int nodeType = (src[srcIndex] & 0x60) >> 5; srcIndex += 2; final int address = readInt4(src, srcIndex); if (address != 0) { addrEntry[addrIndex] = new NbtAddress(recordName, address, groupName, nodeType); } else { addrEntry[addrIndex] = null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameQueryResponse.java
return 0; } final boolean groupName = ((src[srcIndex] & 0x80) == 0x80) == true; final int nodeType = (src[srcIndex] & 0x60) >> 5; srcIndex += 2; final int address = readInt4(src, srcIndex); if (address != 0) { this.addrEntry[this.addrIndex] = new NbtAddress(this.recordName, address, groupName, nodeType); } else {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
} final String groupName = getSearchRoleName(groupDn); final String roleType = updateSearchRoles(roleSet, groupDn, groupName); if (fessConfig.getRoleSearchGroupPrefix().equals(roleType) && fessConfig.isLdapSamaccountnameGroup()) { getSAMAccountGroupName(bindDn, groupName).ifPresent(sAMAccountGroupName -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 82K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryResponseTest.java
// Prepare superclass fields for successful parsing setSuperclassFieldsForSuccessfulParsing(); byte[] src = new byte[10]; int srcIndex = 0; // Simulate groupName = false (0x00), nodeType = 0 (0x00) -> src[srcIndex] = 0x00 src[srcIndex] = (byte) 0x00; src[srcIndex + 1] = (byte) 0x00; // Reserved/padding byte // Simulate address = 192.168.1.1 (0xC0A80101)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
addressArrayField.setAccessible(true); NbtAddress[] addresses = (NbtAddress[]) addressArrayField.get(response); NbtAddress addr = addresses[0]; assertTrue(addr.groupName); assertEquals(3, addr.nodeType); assertTrue(addr.isBeingDeleted); assertTrue(addr.isInConflict); assertTrue(addr.isActive); assertTrue(addr.isPermanent); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0)