- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,047 for gets (0.02 sec)
-
src/main/java/jcifs/internal/smb2/nego/PreauthIntegrityNegotiateContext.java
*/ public PreauthIntegrityNegotiateContext() { } /** * Gets the salt value used for preauth integrity. * * @return the salt */ public byte[] getSalt() { return this.salt; } /** * Gets the supported hash algorithms for preauth integrity. * * @return the hashAlgos */ public int[] getHashAlgos() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java
this.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION); } /** * Gets the information level that was queried. * * @return the informationLevel */ public int getInformationLevel() { return this.informationLevel; } /** * Gets the file system information from the response. * * @return the filesystem info */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/jcifs/internal/AllocInfo.java
* * @author mbechler */ public interface AllocInfo extends FileSystemInformation { /** * Gets the total capacity of the allocation. * * @return total capacity */ long getCapacity(); /** * Gets the free space available. * * @return free space */ long getFree();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
*/ public final boolean isEndOfSearch() { return this.isEndOfSearch; } /** * Gets the last file name in the response. * * @return the lastName */ public final String getLastName() { return this.lastName; } /** * Gets the resume key for continuing the search. * * @return the resumeKey */ public final int getResumeKey() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryAdapterIteratorTest.java
FileEntry entry1 = mock(FileEntry.class); FileEntry entry2 = mock(FileEntry.class); FileEntry entry3 = mock(FileEntry.class); // Constructor gets entry1, first next() returns it and gets entry2, // second next() returns entry2 and gets entry3, // third next() returns entry3 and exhausts when(delegate.hasNext()).thenReturn(true, true, true, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
if (!type.isInstance(object)) { throw new PACDecodingException("Incompatible object types " + type + " " + object.getClass()); } return type.cast(object); } /** * Gets the next element from an enumeration and casts it to the specified type * @param <T> the target type * @param type the target class type * @param enumeration the enumeration to read from
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
*/ public Ingester() { // Default constructor } /** * Gets the priority of this ingester. * Lower numbers indicate higher priority. * * @return the priority value */ public int getPriority() { return priority; } /** * Sets the priority of this ingester. * Lower numbers indicate higher priority. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java
*/ @Experimental public interface SettingsBuilderResult extends Result<SettingsBuilderRequest> { /** * Gets the assembled settings. * * @return the assembled settings, never {@code null} */ @Nonnull Settings getEffectiveSettings(); /** * Gets the problems that were encountered during the settings building. Note that only problems of severity
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderResult.java
*/ @Experimental public interface ToolchainsBuilderResult extends Result<ToolchainsBuilderRequest> { /** * Gets the assembled toolchains. * * @return the assembled toolchains, never {@code null} */ @Nonnull PersistedToolchains getEffectiveToolchains(); /** * Gets the problems that were encountered during the settings building. Note that only problems of severity
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleInternal.java
* * <p>This interface is intended for internal use.</p> */ public interface SmbPipeHandleInternal extends SmbPipeHandle { /** * Gets the type of this pipe. * * @return the pipe type */ int getPipeType(); /** * Gets the session key from the underlying SMB session. * * @return session key of the underlying smb session
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0)