- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for appendCol (0.43 sec)
-
src/main/java/jcifs/internal/dtyp/ACE.java
final StringBuffer sb = new StringBuffer(); sb.append(isAllow() ? "Allow " : "Deny "); appendCol(sb, this.sid.toDisplayString(), 25); sb.append(" 0x").append(Hexdump.toHexString(this.access, 8)).append(' '); sb.append(isInherited() ? "Inherited " : "Direct "); appendCol(sb, getApplyToText(), 34); return sb.toString(); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/ACETest.java
} @Test @DisplayName("Test appendCol helper method") void testAppendCol() { StringBuffer sb = new StringBuffer(); // Test with short string ace.appendCol(sb, "test", 10); assertEquals("test ", sb.toString()); // Test with exact width string sb = new StringBuffer(); ace.appendCol(sb, "exact", 5);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
final StringBuffer sb = new StringBuffer(); sb.append(isAllow() ? "Allow " : "Deny "); appendCol(sb, sid.toDisplayString(), 25); sb.append(" 0x").append(Hexdump.toHexString(access, 8)).append(' '); sb.append(isInherited() ? "Inherited " : "Direct "); appendCol(sb, getApplyToText(), 34); return sb.toString(); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0)