- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 346 for functionality (0.42 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java
import jcifs.internal.util.SMBUtil; /** * Base class for SMB1 NT Transaction response messages. * * NT Transactions are an extended form of the basic transaction protocol * that provides additional functionality for Windows NT-specific operations. */ public abstract class SmbComNtTransactionResponse extends SmbComTransactionResponse { private static final Logger log = LoggerFactory.getLogger(SmbComNtTransactionResponse.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileInformation.java
*/ package jcifs.internal.fscc; import jcifs.Decodable; import jcifs.Encodable; /** * Base interface for File System Control Code (FSCC) file information structures. * Defines common functionality for various SMB2/SMB3 file information classes used in * query and set file information operations, with constants for information levels. * * @author mbechler */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLookupSids.java
*/ package jcifs.smb1.dcerpc.msrpc; import jcifs.smb1.smb1.SID; /** * MSRPC implementation for looking up security identifiers (SIDs). * This class provides functionality to resolve SIDs to their corresponding * account names using the LSA RPC interface. */ public class MsrpcLookupSids extends lsarpc.LsarLookupSids { SID[] sids; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/SmbSession.java
* * @return the configuration used by this session */ Configuration getConfig(); /** * Unwraps this session to the specified type, allowing access to implementation-specific functionality. * * @param <T> the type to unwrap to * @param type the class of the type to unwrap to * @return session instance with the given type */ <T extends SmbSession> T unwrap(Class<T> type);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcGetMembersInAlias.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.smb1.dcerpc.msrpc; /** * MSRPC implementation for retrieving members of an alias. * This class provides functionality to get the list of security identifiers (SIDs) * that are members of a specific alias using the SAMR RPC interface. */ public class MsrpcGetMembersInAlias extends samr.SamrGetMembersInAlias { /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/test/java/jcifs/CIFSExceptionTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.IOException; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; /** * Test class for CIFSException functionality */ @DisplayName("CIFSException Tests") class CIFSExceptionTest extends BaseTest { @Test @DisplayName("Should create CIFSException with message") void testCIFSExceptionWithMessage() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/CredentialsTest.java
import static org.mockito.Mockito.when; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.mockito.Mock; /** * Test class for Credentials interface functionality */ @DisplayName("Credentials Interface Tests") class CredentialsTest extends BaseTest { @Mock private Credentials mockCredentials; @Test @DisplayName("Should define interface methods")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; /** * Service class for managing data configuration CRUD operations. * This service provides functionality to create, read, update, and delete * data configurations used by the Fess crawler system. * * <p>Data configurations define how the crawler should access and process
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/DecodableTest.java
import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; import org.mockito.Mock; import jcifs.internal.SMBProtocolDecodingException; /** * Test class for Decodable interface functionality */ @DisplayName("Decodable Interface Tests") class DecodableTest extends BaseTest { @Mock private Decodable mockDecodable; @Test @DisplayName("Should define decode method")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AbstractConfigHelper.java
import org.codelibs.core.lang.ThreadUtil; /** * The abstract helper for configuration. * * This class provides a basic framework for managing configurations that can be reloaded. * It includes functionality for updating configurations in a separate thread and controlling the reloading interval. */ public abstract class AbstractConfigHelper { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)