- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 479 for getOs (0.02 sec)
-
src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java
super(config); this.outputBuffer = outputBuffer; this.ctlCode = ctlCode; } /** * Gets the IOCTL control code from the response. * * @return the ctlCode */ public int getCtlCode() { return this.ctlCode; } /** * Gets the IOCTL flags from the response. * * @return the ioctlFlags */ public int getIoctlFlags() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponse.java
private int securityMode; private int dialect; /** * Gets the server capabilities * * @return the capabilities flags from the server */ public int getCapabilities() { return this.capabilities; } /** * Gets the server GUID * * @return the server's unique identifier */ public byte[] getServerGuid() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
* * @return the default current page number (typically 1) */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records available across all pages. * * @return the total record count */ public int getAllRecordCount() { return allRecordCount; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
versionNo = null; description = null; } /** * Gets the default current page number. * * @return The default current page number */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records. * * @return The total record count */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java
@Nonnull String getSource(); /** * Gets the one-based index of the line containing the problem. The line number should refer to some text file that * is given by {@link #getSource()}. * * @return the one-based index of the line containing the problem or a non-positive value if unknown */ int getLineNumber(); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java
} /** * Gets the new lease state after the break * @return the new lease state */ public int getNewLeaseState() { return newLeaseState; } /** * Gets the reason for the lease break * @return the break reason */ public int getBreakReason() { return breakReason; } /** * Gets the lease flags from the notification
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
this.flags = address.getAddress().length == 4 ? IPV4 : IPV6; } /** * Gets the IP address. * * @return the IP address */ public InetAddress getAddress() { return address; } /** * Gets the address flags. * * @return the flags */ public int getFlags() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java
} /** * Gets the lease flags from the V2 server response * @return the lease flags */ public int getLeaseFlags() { return leaseFlags; } /** * Gets the parent lease key from the V2 response * @return the parent lease key */ public Smb2LeaseKey getParentLeaseKey() { return parentLeaseKey; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlResponse.java
} } /** * Gets the content of the response using the provided parser function. * * @param <T> the type of the parsed content. * @param parser the function to parse the content. * @return the parsed content. */ public <T> T getContent(final Function<CurlResponse, T> parser) { return parser.apply(this); } /** * Gets the content of the response as a string.
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 6.8K bytes - Viewed (0)