- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getPointer (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/pac/PacUnicodeString.java
public short getMaxLength() { return this.maxLength; } /** * Gets the pointer/offset to the string data. * * @return the pointer to the string data */ public int getPointer() { return this.pointer; } /** * Validates the provided string against this structure's metadata. * Checks that the string length matches the expected length and that
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.9K bytes - Click Count (0) -
src/test/java/jcifs/pac/PacUnicodeStringTest.java
assertEquals(maxLength, pacString.getMaxLength(), "The maxLength should match the value provided in the constructor."); assertEquals(pointer, pacString.getPointer(), "The pointer should match the value provided in the constructor."); } /** * Tests the {@link PacUnicodeString#check(String)} method with a valid string. *
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.7K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
@Override public int problemsReportedFor(BuilderProblem.Severity... severity) { int result = 0; for (BuilderProblem.Severity s : severity) { result += getCounter(s).intValue(); } return result; } @Override public boolean problemsOverflow() { return totalCount.get() > maxCountLimit; }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jul 18 17:30:19 GMT 2025 - 11.4K bytes - Click Count (0)