- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,261 for configurations (0.05 sec)
-
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponse.java
/** * Constructs an NT transaction response. * @param config the configuration context for this response */ protected SmbComNtTransactionResponse(final Configuration config) { super(config); } @Override protected int readParameterWordsWireFormat(final byte[] buffer, int bufferIndex) {
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/test/java/jcifs/context/BaseContextTest.java
} @Test @DisplayName("Constructor should handle credentials from configuration") void testConstructorWithCredentials() throws CIFSException { // Given Configuration configWithCreds = mock(Configuration.class); when(configWithCreds.getDefaultUsername()).thenReturn("testuser"); when(configWithCreds.getDefaultPassword()).thenReturn("testpass");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/metrics/prometheus/alerts.md
Follow below steps to enable and use AlertManager. ## Deploy and start AlertManager Install Prometheus AlertManager from https://prometheus.io/download/ and create configuration as below ```yaml route: group_by: ['alertname'] group_wait: 30s group_interval: 5m
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Apr 23 15:13:23 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComQueryInformationResponse.java
private int fileSize = 0; /** * Constructs a query information response. * * @param config the configuration * @param serverTimeZoneOffset the server time zone offset */ public SmbComQueryInformationResponse(final Configuration config, final long serverTimeZoneOffset) { super(config, SMB_COM_QUERY_INFORMATION); this.serverTimeZoneOffset = serverTimeZoneOffset; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/net/NetShareEnum.java
private static final String DESCR = "WrLeh\u0000B13BWz\u0000"; /** * Constructs a NetShareEnum request * @param config * the configuration to use */ public NetShareEnum(final Configuration config) { super(config, SMB_COM_TRANSACTION, NET_SHARE_ENUM); this.name = "\\PIPE\\LANMAN"; this.maxParameterCount = 8;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDesc.java
/** * Constructs an NT transaction to query security descriptor information. * @param config the configuration context * @param fid the file identifier to query * @param securityInformation bitmask specifying which security information to retrieve */ public NtTransQuerySecurityDesc(final Configuration config, final int fid, final int securityInformation) { super(config, NT_TRANSACT_QUERY_SECURITY_DESC);
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/smb2/notify/Smb2ChangeNotifyResponse.java
/** * Constructs a change notify response * * @param config * The configuration to use */ public Smb2ChangeNotifyResponse(final Configuration config) { super(config); } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSetInformationResponseTest.java
@DisplayName("SmbComSetInformationResponse tests") public class SmbComSetInformationResponseTest { @Mock private Configuration mockConfig; private SmbComSetInformationResponse response; @BeforeEach void setUp() { // Setup mock configuration to avoid NPE when(mockConfig.getPid()).thenReturn(12345); response = new SmbComSetInformationResponse(mockConfig); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
* @param <T> the type of the configuration settings */ public static class ApiConfigsResponse<T> extends ApiResponse { /** * Constructs an empty ApiConfigsResponse. */ public ApiConfigsResponse() { // NOP } /** * The list of configuration settings. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt
params { text( "gitUserEmail", "", label = "Git user.email Configuration", description = "Enter the git 'user.email' configuration to commit change under", display = ParameterDisplay.PROMPT, allowEmpty = true, ) text( "confirmationCode",
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Mar 20 06:13:56 UTC 2025 - 2.8K bytes - Viewed (0)