- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,261 for configurations (0.07 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComSeek.java
* * @author mbechler */ public class SmbComSeek extends ServerMessageBlock { /** * Constructs a seek command. * * @param config the configuration * @param fid the file identifier */ public SmbComSeek(final Configuration config, final int fid) { super(config, SMB_COM_SEEK); this.fid = fid; } private int fid; private int mode; private long offset;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransactionResponse.java
/** * Constructs a transaction response. * * @param config the configuration to use */ protected SmbComTransactionResponse(final Configuration config) { super(config); } /** * Constructs a transaction response with specified command. * * @param config the configuration to use * @param command the SMB command code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/LeaseManagerTest.java
import org.junit.jupiter.api.Test; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.internal.smb2.lease.LeaseManager.LeaseEntry; @DisplayName("LeaseManager Tests") class LeaseManagerTest { private LeaseManager leaseManager; private CIFSContext mockContext; private Configuration mockConfig; @BeforeEach void setUp() { mockContext = mock(CIFSContext.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 00:16:17 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java
private int flags; /** * Constructs a compression negotiate context with the specified algorithms. * * @param config the configuration * @param compressionAlgorithms the supported compression algorithms */ public CompressionNegotiateContext(final Configuration config, final int[] compressionAlgorithms) { this(config, compressionAlgorithms, 0); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
import org.lastaflute.job.LaJobRuntime; /** * Abstract base class for executable jobs in the Fess search engine. * This class provides common functionality for job execution including process management, * logging configuration, JVM options, and timeout handling. * * <p>Subclasses must implement the abstract methods to define specific job behavior * and execution type identification.</p> * * @version 1.0 */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakAcknowledgment.java
private int leaseState; /** * Create a lease break acknowledgment * * @param config configuration * @param leaseKey lease key * @param leaseState acknowledged lease state */ public Smb2LeaseBreakAcknowledgment(Configuration config, Smb2LeaseKey leaseKey, int leaseState) { super(config, SMB2_OPLOCK_BREAK); this.leaseKey = leaseKey;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
docs/bucket/lifecycle/README.md
## 2. Enable bucket lifecycle configuration - Create a bucket lifecycle configuration which expires the objects under the prefix `old/` on `2020-01-01T00:00:00.000Z` date and the objects under `temp/` after 7 days. - Enable bucket lifecycle configuration using `mc`: ```sh $ mc ilm import play/testbucket <<EOF { "Rules": [ {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
import org.mockito.MockitoAnnotations; import jcifs.CIFSException; import jcifs.Configuration; import jcifs.config.PropertyConfiguration; import jcifs.internal.smb1.ServerMessageBlock; public class SmbComTreeDisconnectTest { private Configuration config; private SmbComTreeDisconnect smbComTreeDisconnect; @Mock private Configuration mockConfig; @BeforeEach public void setUp() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
@MockitoSettings(strictness = Strictness.LENIENT) class Smb2SessionSetupResponseTest extends BaseTest { private Smb2SessionSetupResponse newResponse() { // Configuration is not used during decode when no signing digest is set Configuration cfg = mock(Configuration.class); return new Smb2SessionSetupResponse(cfg); } /** * Build a minimal SMB2 header for a response at the given offset.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0)